| Index: src/arm/lithium-codegen-arm.cc
|
| diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc
|
| index dfacf4c2a7d5c6474dd8528954f84dc7afb477e0..04a4b2e032b96153d5bb0a25d0ac2ee24ca7de14 100644
|
| --- a/src/arm/lithium-codegen-arm.cc
|
| +++ b/src/arm/lithium-codegen-arm.cc
|
| @@ -2920,9 +2920,11 @@ void LCodeGen::DoReturn(LReturn* instr) {
|
| count++;
|
| }
|
| }
|
| + int no_frame_start = -1;
|
| if (NeedsEagerFrame()) {
|
| __ mov(sp, fp);
|
| __ ldm(ia_w, sp, fp.bit() | lr.bit());
|
| + no_frame_start = masm_->pc_offset();
|
| }
|
| if (instr->has_constant_parameter_count()) {
|
| int parameter_count = ToInteger32(instr->constant_parameter_count());
|
| @@ -2938,6 +2940,10 @@ void LCodeGen::DoReturn(LReturn* instr) {
|
| }
|
|
|
| __ Jump(lr);
|
| +
|
| + if (no_frame_start != -1) {
|
| + info_->AddNoFrameRange(no_frame_start, masm_->pc_offset());
|
| + }
|
| }
|
|
|
|
|
|
|