Commit 65fa2b49 authored by bmeurer@chromium.org's avatar bmeurer@chromium.org

[turbofan] Fix cctest/test-graph-reducer/ReduceForward1.

TBR=mstarzinger@chromium.org

Review URL: https://codereview.chromium.org/542063003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23726 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent aed44ece
......@@ -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());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment