| Index: src/compiler/graph-replay.cc
|
| diff --git a/src/compiler/graph-replay.cc b/src/compiler/graph-replay.cc
|
| index cb775e96f3538f56fabc7f54e57a4f5144a7dc13..352b171ffa0c60f809c82e0a307401059c7aedf1 100644
|
| --- a/src/compiler/graph-replay.cc
|
| +++ b/src/compiler/graph-replay.cc
|
| @@ -24,7 +24,7 @@ void GraphReplayPrinter::PrintReplay(Graph* graph) {
|
| AllNodes nodes(&zone, graph);
|
|
|
| // Allocate the nodes first.
|
| - for (Node* node : nodes.live) {
|
| + for (Node* node : nodes.reachable) {
|
| PrintReplayOpCreator(node->op());
|
| PrintF(" Node* n%d = graph()->NewNode(op", node->id());
|
| for (int i = 0; i < node->InputCount(); ++i) {
|
| @@ -34,7 +34,7 @@ void GraphReplayPrinter::PrintReplay(Graph* graph) {
|
| }
|
|
|
| // Connect the nodes to their inputs.
|
| - for (Node* node : nodes.live) {
|
| + for (Node* node : nodes.reachable) {
|
| for (int i = 0; i < node->InputCount(); i++) {
|
| PrintF(" n%d->ReplaceInput(%d, n%d);\n", node->id(), i,
|
| node->InputAt(i)->id());
|
|
|