| Index: src/arm/full-codegen-arm.cc
|
| diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc
|
| index 3becc96d262513378f31b3d5ebc7fcf5d62e3f54..34b8921e81460bc7e1afac5cc36413777e0b042e 100644
|
| --- a/src/arm/full-codegen-arm.cc
|
| +++ b/src/arm/full-codegen-arm.cc
|
| @@ -163,16 +163,7 @@ void FullCodeGenerator::Generate() {
|
| FrameScope frame_scope(masm_, StackFrame::MANUAL);
|
|
|
| info->set_prologue_offset(masm_->pc_offset());
|
| - {
|
| - PredictableCodeSizeScope predictible_code_size_scope(
|
| - masm_, kNoCodeAgeSequenceLength * Assembler::kInstrSize);
|
| - // The following three instructions must remain together and unmodified
|
| - // for code aging to work properly.
|
| - __ stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit());
|
| - __ nop(ip.code());
|
| - // Adjust FP to point to saved FP.
|
| - __ add(fp, sp, Operand(2 * kPointerSize));
|
| - }
|
| + __ Prologue(BUILD_FUNCTION_FRAME);
|
| info->AddNoFrameRange(0, masm_->pc_offset());
|
|
|
| { Comment cmnt(masm_, "[ Allocate locals");
|
|
|