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