Index: test/common/wasm/wasm-module-runner.cc |
diff --git a/test/common/wasm/wasm-module-runner.cc b/test/common/wasm/wasm-module-runner.cc |
index 55946b0851407ae6ea42f22c892e1cbde3fa8727..2eece57184a2db530314eeab35481c233a900ea1 100644 |
--- a/test/common/wasm/wasm-module-runner.cc |
+++ b/test/common/wasm/wasm-module-runner.cc |
@@ -102,7 +102,7 @@ int32_t RunWasmModuleForTesting(Isolate* isolate, Handle<JSObject> instance, |
int32_t CompileAndRunWasmModule(Isolate* isolate, const byte* module_start, |
const byte* module_end, ModuleOrigin origin) { |
HandleScope scope(isolate); |
- Zone zone(isolate->allocator()); |
+ Zone zone(isolate->allocator(), ZONE_NAME); |
ErrorThrower thrower(isolate, "CompileAndRunWasmModule"); |
Handle<JSObject> instance = CompileInstantiateWasmModuleForTesting( |
isolate, &thrower, &zone, module_start, module_end, origin); |
@@ -117,7 +117,7 @@ int32_t InterpretWasmModule(Isolate* isolate, ErrorThrower* thrower, |
WasmVal* args) { |
CHECK(module != nullptr); |
- Zone zone(isolate->allocator()); |
+ Zone zone(isolate->allocator(), ZONE_NAME); |
v8::internal::HandleScope scope(isolate); |
if (module->import_table.size() > 0) { |