| Index: src/compiler/code-generator.cc
|
| diff --git a/src/compiler/code-generator.cc b/src/compiler/code-generator.cc
|
| index 708b18e776c5e210cf397354f42afd4e372bc4e1..53cc5d352d039e353a8099d61b99470f08fec564 100644
|
| --- a/src/compiler/code-generator.cc
|
| +++ b/src/compiler/code-generator.cc
|
| @@ -133,6 +133,8 @@ void CodeGenerator::AssembleInstruction(Instruction* instr) {
|
| if (instr->IsGapMoves()) {
|
| // Handle parallel moves associated with the gap instruction.
|
| AssembleGap(GapInstruction::cast(instr));
|
| + } else if (instr->IsBlockStart()) {
|
| + return;
|
| } else if (instr->IsSourcePosition()) {
|
| AssembleSourcePosition(SourcePositionInstruction::cast(instr));
|
| } else {
|
|
|