Index: src/compiler/code-generator.cc |
diff --git a/src/compiler/code-generator.cc b/src/compiler/code-generator.cc |
index bb0ef1bc19473a2dad38431234a43c71ff1a6ef0..d1faeb07f65a02330a614070c224aa8f0250e003 100644 |
--- a/src/compiler/code-generator.cc |
+++ b/src/compiler/code-generator.cc |
@@ -107,8 +107,7 @@ void CodeGenerator::AssembleInstruction(Instruction* instr) { |
if (FLAG_code_comments) { |
// TODO(titzer): these code comments are a giant memory leak. |
Vector<char> buffer = Vector<char>::New(32); |
- // TODO(dcarney): should not be rpo number there |
- SNPrintF(buffer, "-- B%d (rpo) start --", current_block_.ToInt()); |
+ SNPrintF(buffer, "-- B%d start --", block_start->id().ToInt()); |
masm()->RecordComment(buffer.start()); |
} |
masm()->bind(block_start->label()); |