| Index: src/ia32/builtins-ia32.cc | 
| diff --git a/src/ia32/builtins-ia32.cc b/src/ia32/builtins-ia32.cc | 
| index 70b2ad16d36e4498506648b6f1a8c17c4f5aa14e..139cb0fbb337276afa0ead33e3d07766d7767d80 100644 | 
| --- a/src/ia32/builtins-ia32.cc | 
| +++ b/src/ia32/builtins-ia32.cc | 
| @@ -654,7 +654,9 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) { | 
| ExternalReference::address_of_stack_limit(masm->isolate()); | 
| __ cmp(esp, Operand::StaticVariable(stack_limit)); | 
| __ j(above_equal, &ok); | 
| +    __ push(kInterpreterBytecodeArrayRegister); | 
| __ CallRuntime(Runtime::kStackGuard, 0); | 
| +    __ pop(kInterpreterBytecodeArrayRegister); | 
| __ bind(&ok); | 
| } | 
|  | 
|  |