| Index: test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| diff --git a/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc b/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| index 161d5d97fd0bd58e0a257dfd6be5001aed527c44..56cae08760c678ce3d7ea1219bb8333328194a98 100644
|
| --- a/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| +++ b/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| @@ -649,8 +649,7 @@ TEST_P(InstructionSelectorMemoryAccessTest, LoadWithParameters) {
|
| TEST_P(InstructionSelectorMemoryAccessTest, StoreWithParameters) {
|
| const MemoryAccess memacc = GetParam();
|
| StreamBuilder m(this, kMachInt32, kMachPtr, kMachInt32, memacc.type);
|
| - StoreRepresentation store_rep(memacc.type, kNoWriteBarrier);
|
| - m.Store(store_rep, m.Parameter(0), m.Parameter(1));
|
| + m.Store(memacc.type, m.Parameter(0), m.Parameter(1), kNoWriteBarrier);
|
| m.Return(m.Int32Constant(0));
|
| Stream s = m.Build();
|
| ASSERT_EQ(1U, s.size());
|
| @@ -698,8 +697,8 @@ TEST_P(InstructionSelectorMemoryAccessImmTest, StoreWithImmediateIndex) {
|
| const MemoryAccessImm memacc = GetParam();
|
| TRACED_FOREACH(int32_t, index, memacc.immediates) {
|
| StreamBuilder m(this, kMachInt32, kMachPtr, memacc.type);
|
| - StoreRepresentation store_rep(memacc.type, kNoWriteBarrier);
|
| - m.Store(store_rep, m.Parameter(0), m.Int32Constant(index), m.Parameter(1));
|
| + m.Store(memacc.type, m.Parameter(0), m.Int32Constant(index), m.Parameter(1),
|
| + kNoWriteBarrier);
|
| m.Return(m.Int32Constant(0));
|
| Stream s = m.Build();
|
| ASSERT_EQ(1U, s.size());
|
| @@ -747,8 +746,8 @@ TEST_P(InstructionSelectorMemoryAccessImmMoreThan16bitTest,
|
| const MemoryAccessImm1 memacc = GetParam();
|
| TRACED_FOREACH(int32_t, index, memacc.immediates) {
|
| StreamBuilder m(this, kMachInt32, kMachPtr, memacc.type);
|
| - StoreRepresentation store_rep(memacc.type, kNoWriteBarrier);
|
| - m.Store(store_rep, m.Parameter(0), m.Int32Constant(index), m.Parameter(1));
|
| + m.Store(memacc.type, m.Parameter(0), m.Int32Constant(index), m.Parameter(1),
|
| + kNoWriteBarrier);
|
| m.Return(m.Int32Constant(0));
|
| Stream s = m.Build();
|
| ASSERT_EQ(2U, s.size());
|
|
|