Index: src/mips64/builtins-mips64.cc |
diff --git a/src/mips64/builtins-mips64.cc b/src/mips64/builtins-mips64.cc |
index 29dd3678813e19b3e4e9a8ab5a3f586469bc7bce..1aade29faccde28551d0e7fb7e724e09a9634aa6 100644 |
--- a/src/mips64/builtins-mips64.cc |
+++ b/src/mips64/builtins-mips64.cc |
@@ -1024,17 +1024,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; |
- __ LoadRoot(at, Heap::kStackLimitRootIndex); |
- __ Branch(&ok, hs, sp, Operand(at)); |
- __ push(kInterpreterBytecodeArrayRegister); |
- __ CallRuntime(Runtime::kStackGuard); |
- __ pop(kInterpreterBytecodeArrayRegister); |
- __ bind(&ok); |
- } |
- |
// Load bytecode offset and dispatch table into registers. |
__ LoadRoot(kInterpreterAccumulatorRegister, Heap::kUndefinedValueRootIndex); |
__ Daddu(kInterpreterRegisterFileRegister, fp, |