Index: src/compiler/instruction-selector.cc |
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
index 4f95b752bab5fe6d43b40b921363a64b74f0a4de..a0bb6b6a20b718bca1afa98463474bbbb92d5a81 100644 |
--- a/src/compiler/instruction-selector.cc |
+++ b/src/compiler/instruction-selector.cc |
@@ -1002,7 +1002,7 @@ void InstructionSelector::VisitConstant(Node* node) { |
void InstructionSelector::VisitGoto(BasicBlock* target) { |
// jump to the next block. |
OperandGenerator g(this); |
- Emit(kArchJmp, NULL, g.Label(target))->MarkAsControl(); |
+ Emit(kArchJmp, NULL, g.Label(target)); |
} |