Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/cctest/wasm/test-run-wasm.cc')
-rw-r--r--deps/v8/test/cctest/wasm/test-run-wasm.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/test/cctest/wasm/test-run-wasm.cc b/deps/v8/test/cctest/wasm/test-run-wasm.cc
index 1aebac3c761..436071ed099 100644
--- a/deps/v8/test/cctest/wasm/test-run-wasm.cc
+++ b/deps/v8/test/cctest/wasm/test-run-wasm.cc
@@ -3752,9 +3752,9 @@ TEST(Liftoff_tier_up) {
memcpy(buffer.get(), sub_code->instructions().begin(), sub_size);
desc.buffer = buffer.get();
desc.instr_size = static_cast<int>(sub_size);
- std::unique_ptr<WasmCode> new_code =
- native_module->AddCode(add.function_index(), desc, 0, 0, {}, {},
- WasmCode::kFunction, ExecutionTier::kTurbofan);
+ std::unique_ptr<WasmCode> new_code = native_module->AddCode(
+ add.function_index(), desc, 0, 0, {}, {}, WasmCode::kFunction,
+ ExecutionTier::kTurbofan, kNoDebugging);
native_module->PublishCode(std::move(new_code));
// Second run should now execute {sub}.