Index: test/cctest/wasm/test-run-wasm.cc |
diff --git a/test/cctest/wasm/test-run-wasm.cc b/test/cctest/wasm/test-run-wasm.cc |
index d5b5c82caee9c0b990ba2f5bb3bff5ed8c7a0d5b..5da32b42ef449da6409f614286929223a4080671 100644 |
--- a/test/cctest/wasm/test-run-wasm.cc |
+++ b/test/cctest/wasm/test-run-wasm.cc |
@@ -1853,7 +1853,7 @@ WASM_EXEC_TEST(Infinite_Loop_not_taken2_brif) { |
static void TestBuildGraphForSimpleExpression(WasmOpcode opcode) { |
Isolate* isolate = CcTest::InitIsolateOnce(); |
- Zone zone(isolate->allocator()); |
+ Zone zone(isolate->allocator(), ZONE_NAME); |
HandleScope scope(isolate); |
// Enable all optional operators. |
CommonOperatorBuilder common(&zone); |
@@ -2240,7 +2240,7 @@ static void Run_WasmMixedCall_N(WasmExecutionMode execution_mode, int start) { |
int num_params = static_cast<int>(arraysize(mixed)) - start; |
for (int which = 0; which < num_params; ++which) { |
v8::internal::AccountingAllocator allocator; |
- Zone zone(&allocator); |
+ Zone zone(&allocator, ZONE_NAME); |
TestingModule module(execution_mode); |
module.AddMemory(1024); |
MachineType* memtypes = &mixed[start]; |
@@ -2873,7 +2873,7 @@ static void CompileCallIndirectMany(LocalType param) { |
TestSignatures sigs; |
for (byte num_params = 0; num_params < 40; ++num_params) { |
v8::internal::AccountingAllocator allocator; |
- Zone zone(&allocator); |
+ Zone zone(&allocator, ZONE_NAME); |
HandleScope scope(CcTest::InitIsolateOnce()); |
TestingModule module(kExecuteCompiled); |
FunctionSig* sig = sigs.many(&zone, kAstStmt, param, num_params); |