Index: src/full-codegen/x87/full-codegen-x87.cc |
diff --git a/src/full-codegen/x87/full-codegen-x87.cc b/src/full-codegen/x87/full-codegen-x87.cc |
index a85152d7a98e8b107c81611a4aeecf21ec3ff8a2..8fb220c5b2697113997c2db22e1338dcc421e314 100644 |
--- a/src/full-codegen/x87/full-codegen-x87.cc |
+++ b/src/full-codegen/x87/full-codegen-x87.cc |
@@ -7,7 +7,6 @@ |
#include "src/code-factory.h" |
#include "src/code-stubs.h" |
#include "src/codegen.h" |
-#include "src/compiler.h" |
#include "src/debug/debug.h" |
#include "src/full-codegen/full-codegen.h" |
#include "src/ic/ic.h" |
@@ -133,7 +132,6 @@ void FullCodeGenerator::Generate() { |
info->set_prologue_offset(masm_->pc_offset()); |
__ Prologue(info->IsCodePreAgingActive()); |
- info->AddNoFrameRange(0, masm_->pc_offset()); |
{ Comment cmnt(masm_, "[ Allocate locals"); |
int locals_count = info->scope()->num_stack_slots(); |
@@ -433,13 +431,11 @@ void FullCodeGenerator::EmitReturnSequence() { |
__ bind(&ok); |
SetReturnPosition(literal()); |
- int no_frame_start = masm_->pc_offset(); |
__ leave(); |
int arg_count = info_->scope()->num_parameters() + 1; |
int arguments_bytes = arg_count * kPointerSize; |
__ Ret(arguments_bytes, ecx); |
- info_->AddNoFrameRange(no_frame_start, masm_->pc_offset()); |
} |
} |