Index: test/cctest/compiler/test-machine-operator-reducer.cc |
diff --git a/test/cctest/compiler/test-machine-operator-reducer.cc b/test/cctest/compiler/test-machine-operator-reducer.cc |
index 299f0c02abf52d421d09f5c1701d3a473ffa2652..592c95ca05f9d71fe71ce172d26790757fc44a96 100644 |
--- a/test/cctest/compiler/test-machine-operator-reducer.cc |
+++ b/test/cctest/compiler/test-machine-operator-reducer.cc |
@@ -703,7 +703,8 @@ TEST(ReduceLoadStore) { |
Node* base = R.Constant<int32_t>(11); |
Node* index = R.Constant<int32_t>(4); |
- Node* load = R.graph.NewNode(R.machine.Load(kMachInt32), base, index); |
+ Node* load = R.graph.NewNode(R.machine.Load(kMachInt32), base, index, |
+ R.graph.start(), R.graph.start()); |
{ |
MachineOperatorReducer reducer(&R.jsgraph); |
@@ -714,7 +715,7 @@ TEST(ReduceLoadStore) { |
{ |
Node* store = R.graph.NewNode( |
R.machine.Store(StoreRepresentation(kMachInt32, kNoWriteBarrier)), base, |
- index, load); |
+ index, load, load, load); |
MachineOperatorReducer reducer(&R.jsgraph); |
Reduction reduction = reducer.Reduce(store); |
CHECK(!reduction.Changed()); // stores should not be reduced. |