| Index: test/cctest/wasm/test-run-wasm-64.cc
|
| diff --git a/test/cctest/wasm/test-run-wasm-64.cc b/test/cctest/wasm/test-run-wasm-64.cc
|
| index 3d8d484295fcfea368d9dcab30c73d4cbd51c5ae..b65e7f1a7db56095f08e0952fbfb3189231feb7e 100644
|
| --- a/test/cctest/wasm/test-run-wasm-64.cc
|
| +++ b/test/cctest/wasm/test-run-wasm-64.cc
|
| @@ -1467,7 +1467,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);
|
| @@ -1507,7 +1507,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];
|
|
|