Index: src/compiler/instruction-selector.cc |
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
index aea29eb24eec6cfed91499074a58a15fc79b100c..02732e7cbe572e07006f586ad30c66b2793e249d 100644 |
--- a/src/compiler/instruction-selector.cc |
+++ b/src/compiler/instruction-selector.cc |
@@ -768,7 +768,7 @@ void InstructionSelector::VisitControl(BasicBlock* block) { |
DCHECK_EQ(IrOpcode::kThrow, input->opcode()); |
return VisitThrow(input->InputAt(0)); |
case BasicBlock::kNone: { |
- // TODO(titzer): exit block doesn't have control. |
+ // Exit block doesn't have control. |
DCHECK_NULL(input); |
break; |
} |
@@ -1611,7 +1611,7 @@ void InstructionSelector::VisitDeoptimize(DeoptimizeKind kind, Node* value) { |
void InstructionSelector::VisitThrow(Node* value) { |
OperandGenerator g(this); |
- Emit(kArchThrowTerminator, g.NoOutput()); // TODO(titzer) |
+ Emit(kArchThrowTerminator, g.NoOutput()); |
} |