Index: src/ia32/stub-cache-ia32.cc |
diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc |
index 07cb14d02510559bb14b8681ba7437a0bb84e710..1d165251521235d2887999e76ebe43952b1f6ab3 100644 |
--- a/src/ia32/stub-cache-ia32.cc |
+++ b/src/ia32/stub-cache-ia32.cc |
@@ -2372,7 +2372,7 @@ MaybeObject* CallStubCompiler::CompileCallInterceptor(JSObject* object, |
// Get the number of arguments. |
const int argc = arguments().immediate(); |
- LookupResult lookup; |
+ LookupResult lookup(isolate()); |
LookupPostInterceptor(holder, name, &lookup); |
// Get the receiver from the stack. |
@@ -2914,7 +2914,7 @@ MaybeObject* LoadStubCompiler::CompileLoadInterceptor(JSObject* receiver, |
// ----------------------------------- |
Label miss; |
- LookupResult lookup; |
+ LookupResult lookup(isolate()); |
LookupPostInterceptor(holder, name, &lookup); |
// TODO(368): Compile in the whole chain: all the interceptors in |
@@ -3102,7 +3102,7 @@ MaybeObject* KeyedLoadStubCompiler::CompileLoadInterceptor(JSObject* receiver, |
__ cmp(eax, Immediate(Handle<String>(name))); |
__ j(not_equal, &miss); |
- LookupResult lookup; |
+ LookupResult lookup(isolate()); |
LookupPostInterceptor(holder, name, &lookup); |
GenerateLoadInterceptor(receiver, |
holder, |