| Index: src/arm/lithium-codegen-arm.cc
|
| ===================================================================
|
| --- src/arm/lithium-codegen-arm.cc (revision 7679)
|
| +++ src/arm/lithium-codegen-arm.cc (working copy)
|
| @@ -739,7 +739,7 @@
|
| }
|
| __ bind(label->label());
|
| current_block_ = label->block_id();
|
| - LCodeGen::DoGap(label);
|
| + DoGap(label);
|
| }
|
|
|
|
|
| @@ -765,6 +765,11 @@
|
| }
|
|
|
|
|
| +void LCodeGen::DoInstructionGap(LInstructionGap* instr) {
|
| + DoGap(instr);
|
| +}
|
| +
|
| +
|
| void LCodeGen::DoParameter(LParameter* instr) {
|
| // Nothing to do.
|
| }
|
|
|