Index: src/mips/lithium-codegen-mips.cc |
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc |
index bf158b4c43a9da0713a86b625d9be2e148e53f9a..58bf1a01ffa11545cf161020354d8207b6abbabd 100644 |
--- a/src/mips/lithium-codegen-mips.cc |
+++ b/src/mips/lithium-codegen-mips.cc |
@@ -165,7 +165,6 @@ bool LCodeGen::GeneratePrologue() { |
__ Prologue(info()->IsCodePreAgingActive()); |
} |
frame_is_built_ = true; |
- info_->AddNoFrameRange(0, masm_->pc_offset()); |
} |
// Reserve space for the stack slots needed by the code. |
@@ -2686,10 +2685,8 @@ void LCodeGen::DoReturn(LReturn* instr) { |
if (info()->saves_caller_doubles()) { |
RestoreCallerDoubles(); |
} |
- int no_frame_start = -1; |
if (NeedsEagerFrame()) { |
__ mov(sp, fp); |
- no_frame_start = masm_->pc_offset(); |
__ Pop(ra, fp); |
} |
if (instr->has_constant_parameter_count()) { |
@@ -2708,10 +2705,6 @@ void LCodeGen::DoReturn(LReturn* instr) { |
} |
__ Jump(ra); |
- |
- if (no_frame_start != -1) { |
- info_->AddNoFrameRange(no_frame_start, masm_->pc_offset()); |
- } |
} |