| 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 ba2276821c82886d3cace22a881f38c13dc127f3..86888e96f56c0d25f90b491296877cb307e490d8 100644
|
| --- a/test/cctest/compiler/test-machine-operator-reducer.cc
|
| +++ b/test/cctest/compiler/test-machine-operator-reducer.cc
|
| @@ -713,9 +713,10 @@ TEST(ReduceLoadStore) {
|
| }
|
|
|
| {
|
| - Node* store = R.graph.NewNode(R.machine.Store(StoreRepresentation(
|
| - MachineType::Int32(), kNoWriteBarrier)),
|
| - base, index, load, load, R.graph.start());
|
| + Node* store =
|
| + R.graph.NewNode(R.machine.Store(StoreRepresentation(
|
| + MachineRepresentation::kWord32, kNoWriteBarrier)),
|
| + base, index, load, load, R.graph.start());
|
| MachineOperatorReducer reducer(&R.jsgraph);
|
| Reduction reduction = reducer.Reduce(store);
|
| CHECK(!reduction.Changed()); // stores should not be reduced.
|
|
|