| Index: test/cctest/compiler/test-graph-reducer.cc
|
| diff --git a/test/cctest/compiler/test-graph-reducer.cc b/test/cctest/compiler/test-graph-reducer.cc
|
| index a9462e813cc3ee680e14f55fe729d9d8b90a2054..eabfd22e77f910ae4b30dc62e8c4e366813cd54a 100644
|
| --- a/test/cctest/compiler/test-graph-reducer.cc
|
| +++ b/test/cctest/compiler/test-graph-reducer.cc
|
| @@ -470,9 +470,9 @@ TEST(ReduceForward1) {
|
| reducer.ReduceGraph();
|
| CHECK_EQ(before, graph.NodeCount());
|
| CHECK_EQ(&OPB0, n1->op());
|
| - CHECK_EQ(NULL, n2->op());
|
| + CHECK(n2->IsDead());
|
| CHECK_EQ(n1, end->InputAt(0));
|
| - CHECK_EQ(NULL, n3->op());
|
| + CHECK(n3->IsDead());
|
| CHECK_EQ(n1, end->InputAt(0));
|
| CHECK_EQ(&OPB2, end->op());
|
| CHECK_EQ(0, n2->UseCount());
|
|
|