Index: src/ia32/stub-cache-ia32.cc |
diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc |
index f4f3b2bed3430fba38796b61d2ede5d775c114b6..88923c308e90f2a53a20e227a7dd37550830f1f4 100644 |
--- a/src/ia32/stub-cache-ia32.cc |
+++ b/src/ia32/stub-cache-ia32.cc |
@@ -647,8 +647,7 @@ class CallInterceptorCompiler BASE_EMBEDDED { |
public: |
CallInterceptorCompiler(CallStubCompiler* stub_compiler, |
const ParameterCount& arguments, |
- Register name, |
- ExtraICState extra_state) |
+ Register name) |
: stub_compiler_(stub_compiler), |
arguments_(arguments), |
name_(name) {} |
@@ -2589,7 +2588,7 @@ Handle<Code> CallStubCompiler::CompileCallInterceptor(Handle<JSObject> object, |
// Get the receiver from the stack. |
__ mov(edx, Operand(esp, (argc + 1) * kPointerSize)); |
- CallInterceptorCompiler compiler(this, arguments(), ecx, extra_state()); |
+ CallInterceptorCompiler compiler(this, arguments(), ecx); |
compiler.Compile(masm(), object, holder, name, &lookup, edx, ebx, edi, eax, |
&miss); |