| Index: src/ia32/code-stubs-ia32.cc
 | 
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
 | 
| index 70ac4562e4ee2ce7434f870d2d568588133256d5..cc885b5a78031fce1dc74e1c8a0271416bf6a805 100644
 | 
| --- a/src/ia32/code-stubs-ia32.cc
 | 
| +++ b/src/ia32/code-stubs-ia32.cc
 | 
| @@ -5483,14 +5483,13 @@ static void CallApiFunctionStubHelper(MacroAssembler* masm,
 | 
|  
 | 
|    typedef FunctionCallbackArguments FCA;
 | 
|  
 | 
| -  STATIC_ASSERT(FCA::kContextSaveIndex == 6);
 | 
| -  STATIC_ASSERT(FCA::kCalleeIndex == 5);
 | 
| +  STATIC_ASSERT(FCA::kContextSaveIndex == 5);
 | 
|    STATIC_ASSERT(FCA::kDataIndex == 4);
 | 
|    STATIC_ASSERT(FCA::kReturnValueOffset == 3);
 | 
|    STATIC_ASSERT(FCA::kReturnValueDefaultValueIndex == 2);
 | 
|    STATIC_ASSERT(FCA::kIsolateIndex == 1);
 | 
|    STATIC_ASSERT(FCA::kHolderIndex == 0);
 | 
| -  STATIC_ASSERT(FCA::kArgsLength == 7);
 | 
| +  STATIC_ASSERT(FCA::kArgsLength == 6);
 | 
|  
 | 
|    DCHECK(argc.is_immediate() || eax.is(argc.reg()));
 | 
|  
 | 
| @@ -5504,9 +5503,6 @@ static void CallApiFunctionStubHelper(MacroAssembler* masm,
 | 
|      return_address = context;
 | 
|    }
 | 
|  
 | 
| -  // callee
 | 
| -  __ push(callee);
 | 
| -
 | 
|    // call data
 | 
|    __ push(call_data);
 | 
|  
 | 
| 
 |