| Index: src/ia32/builtins-ia32.cc
|
| diff --git a/src/ia32/builtins-ia32.cc b/src/ia32/builtins-ia32.cc
|
| index f68865250eed432e42b9f6d8e2c0fd559979c40e..a1736555d143032df2c3113e67cca27ec0a80173 100644
|
| --- a/src/ia32/builtins-ia32.cc
|
| +++ b/src/ia32/builtins-ia32.cc
|
| @@ -600,19 +600,6 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| // - Allow simulator stop operations if FLAG_stop_at is set.
|
| // - Code aging of the BytecodeArray object.
|
|
|
| - // Perform stack guard check.
|
| - {
|
| - Label ok;
|
| - ExternalReference stack_limit =
|
| - ExternalReference::address_of_stack_limit(masm->isolate());
|
| - __ cmp(esp, Operand::StaticVariable(stack_limit));
|
| - __ j(above_equal, &ok);
|
| - __ push(kInterpreterBytecodeArrayRegister);
|
| - __ CallRuntime(Runtime::kStackGuard);
|
| - __ pop(kInterpreterBytecodeArrayRegister);
|
| - __ bind(&ok);
|
| - }
|
| -
|
| // Load accumulator, register file, bytecode offset, dispatch table into
|
| // registers.
|
| __ LoadRoot(kInterpreterAccumulatorRegister, Heap::kUndefinedValueRootIndex);
|
|
|