commit | 6f3fc44129ff775165447b31ee68e7cc0ca9dedd | [log] [tgz] |
---|---|---|
author | Kaido Kert <kaidokert@google.com> | Fri Jun 25 11:58:59 2021 -0700 |
committer | Kaido Kert <kaidokert@google.com> | Fri Jun 25 12:00:29 2021 -0700 |
tree | 60b4dcc96ae31d38b27e61c32024f414f7736c16 | |
parent | e83fce97d7405b0b5e569d961aa431b1112ac6ac [diff] [blame] |
Import Cobalt 22.master.0.303007 Includes the following patches: https://cobalt-review.googlesource.com/c/cobalt/+/5870 by g.jiang@samsung.com https://cobalt-review.googlesource.com/c/cobalt/+/6078 by zj.huang@samsung.corp-partner.google.com https://cobalt-review.googlesource.com/c/cobalt/+/6110 by zj.huang@samsung.corp-partner.google.com https://cobalt-review.googlesource.com/c/cobalt/+/6085 by xnicole.chen@samsung.com https://cobalt-review.googlesource.com/c/cobalt/+/6079 by zj.huang@samsung.corp-partner.google.com
diff --git a/src/third_party/v8/src/wasm/wasm-debug-evaluate.cc b/src/third_party/v8/src/wasm/wasm-debug-evaluate.cc index 909cb37..f4a4deb 100644 --- a/src/third_party/v8/src/wasm/wasm-debug-evaluate.cc +++ b/src/third_party/v8/src/wasm/wasm-debug-evaluate.cc
@@ -229,7 +229,7 @@ evaluator_->memory_size(), &thrower)) { return; } - base::Memcpy(&evaluator_->memory_start()[result_offset], &val, sizeof(T)); + memcpy(&evaluator_->memory_start()[result_offset], &val, sizeof(T)); } void WriteResult(const WasmValue& result, uint32_t result_offset) {