Index: src/compiler/graph-replay.cc |
diff --git a/src/compiler/graph-replay.cc b/src/compiler/graph-replay.cc |
index 0109adc9870b21be3a6be03610eb76a6f04f88fb..296ffe4c941b36523559553717bc32bf3609f5c2 100644 |
--- a/src/compiler/graph-replay.cc |
+++ b/src/compiler/graph-replay.cc |
@@ -24,14 +24,13 @@ void GraphReplayPrinter::PrintReplay(Graph* graph) { |
} |
-GenericGraphVisit::Control GraphReplayPrinter::Pre(Node* node) { |
+void GraphReplayPrinter::Pre(Node* node) { |
PrintReplayOpCreator(node->op()); |
PrintF(" Node* n%d = graph.NewNode(op", node->id()); |
for (int i = 0; i < node->InputCount(); ++i) { |
PrintF(", nil"); |
} |
PrintF("); USE(n%d);\n", node->id()); |
- return GenericGraphVisit::CONTINUE; |
} |