Index: src/x87/lithium-codegen-x87.cc |
diff --git a/src/x87/lithium-codegen-x87.cc b/src/x87/lithium-codegen-x87.cc |
index 921259e96487dd921af2709ac677f307a19244e3..a31250541f51b1d62536a48e9aba134a93086088 100644 |
--- a/src/x87/lithium-codegen-x87.cc |
+++ b/src/x87/lithium-codegen-x87.cc |
@@ -161,7 +161,6 @@ bool LCodeGen::GeneratePrologue() { |
} else { |
__ Prologue(info()->IsCodePreAgingActive()); |
} |
- info()->AddNoFrameRange(0, masm_->pc_offset()); |
} |
if (info()->IsOptimizing() && |
@@ -2982,11 +2981,9 @@ void LCodeGen::DoReturn(LReturn* instr) { |
__ mov(edx, Operand(ebp, |
JavaScriptFrameConstants::kDynamicAlignmentStateOffset)); |
} |
- int no_frame_start = -1; |
if (NeedsEagerFrame()) { |
__ mov(esp, ebp); |
__ pop(ebp); |
- no_frame_start = masm_->pc_offset(); |
} |
if (dynamic_frame_alignment_) { |
Label no_padding; |
@@ -2998,9 +2995,6 @@ void LCodeGen::DoReturn(LReturn* instr) { |
} |
EmitReturn(instr, false); |
- if (no_frame_start != -1) { |
- info()->AddNoFrameRange(no_frame_start, masm_->pc_offset()); |
- } |
} |