Index: test/cctest/interpreter/test-interpreter.cc |
diff --git a/test/cctest/interpreter/test-interpreter.cc b/test/cctest/interpreter/test-interpreter.cc |
index 511e891d4939f0cda370d05496158367ca01dfb8..8798bc9ee084e8c1e8955fa1af68ef8d14b91fe3 100644 |
--- a/test/cctest/interpreter/test-interpreter.cc |
+++ b/test/cctest/interpreter/test-interpreter.cc |
@@ -578,7 +578,7 @@ TEST(InterpreterLoadNamedProperty) { |
HandleAndZoneScope handles; |
i::Isolate* isolate = handles.main_isolate(); |
i::Factory* factory = isolate->factory(); |
- i::Zone zone; |
+ i::Zone zone(isolate->allocator()); |
i::FeedbackVectorSpec feedback_spec(&zone); |
i::FeedbackVectorSlot slot = feedback_spec.AddLoadICSlot(); |
@@ -631,7 +631,7 @@ TEST(InterpreterLoadKeyedProperty) { |
HandleAndZoneScope handles; |
i::Isolate* isolate = handles.main_isolate(); |
i::Factory* factory = isolate->factory(); |
- i::Zone zone; |
+ i::Zone zone(isolate->allocator()); |
i::FeedbackVectorSpec feedback_spec(&zone); |
i::FeedbackVectorSlot slot = feedback_spec.AddKeyedLoadICSlot(); |
@@ -673,7 +673,7 @@ TEST(InterpreterStoreNamedProperty) { |
HandleAndZoneScope handles; |
i::Isolate* isolate = handles.main_isolate(); |
i::Factory* factory = isolate->factory(); |
- i::Zone zone; |
+ i::Zone zone(isolate->allocator()); |
i::FeedbackVectorSpec feedback_spec(&zone); |
i::FeedbackVectorSlot slot = feedback_spec.AddStoreICSlot(); |
@@ -732,7 +732,7 @@ TEST(InterpreterStoreKeyedProperty) { |
HandleAndZoneScope handles; |
i::Isolate* isolate = handles.main_isolate(); |
i::Factory* factory = isolate->factory(); |
- i::Zone zone; |
+ i::Zone zone(isolate->allocator()); |
i::FeedbackVectorSpec feedback_spec(&zone); |
i::FeedbackVectorSlot slot = feedback_spec.AddKeyedStoreICSlot(); |
@@ -779,7 +779,7 @@ static void TestInterpreterCall(TailCallMode tail_call_mode) { |
HandleAndZoneScope handles; |
i::Isolate* isolate = handles.main_isolate(); |
i::Factory* factory = isolate->factory(); |
- i::Zone zone; |
+ i::Zone zone(isolate->allocator()); |
i::FeedbackVectorSpec feedback_spec(&zone); |
i::FeedbackVectorSlot slot = feedback_spec.AddLoadICSlot(); |