Index: src/mips64/lithium-codegen-mips64.cc |
diff --git a/src/mips64/lithium-codegen-mips64.cc b/src/mips64/lithium-codegen-mips64.cc |
index a26d099a6299742ad77c09727008d3fae6e80491..d7b6b860d0cff3a346ea5a420aa3317c1d226850 100644 |
--- a/src/mips64/lithium-codegen-mips64.cc |
+++ b/src/mips64/lithium-codegen-mips64.cc |
@@ -140,7 +140,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. |
@@ -2794,10 +2793,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()) { |
@@ -2816,10 +2813,6 @@ void LCodeGen::DoReturn(LReturn* instr) { |
} |
__ Jump(ra); |
- |
- if (no_frame_start != -1) { |
- info_->AddNoFrameRange(no_frame_start, masm_->pc_offset()); |
- } |
} |