| 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 41453337f2a630ba8a96dca324348e5a8adc0b5d..ab95023492845522981257098131b2cfbca71b8d 100644
|
| --- a/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| +++ b/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| @@ -166,29 +166,28 @@ const IntCmp kCmpInstructions[] = {
|
| {{&RawMachineAssembler::WordNotEqual, "WordNotEqual", kMips64Cmp,
|
| kMachInt64},
|
| 1U},
|
| - {{&RawMachineAssembler::Word32Equal, "Word32Equal", kMips64Cmp32,
|
| - kMachInt32},
|
| + {{&RawMachineAssembler::Word32Equal, "Word32Equal", kMips64Cmp, kMachInt32},
|
| 1U},
|
| - {{&RawMachineAssembler::Word32NotEqual, "Word32NotEqual", kMips64Cmp32,
|
| + {{&RawMachineAssembler::Word32NotEqual, "Word32NotEqual", kMips64Cmp,
|
| kMachInt32},
|
| 1U},
|
| - {{&RawMachineAssembler::Int32LessThan, "Int32LessThan", kMips64Cmp32,
|
| + {{&RawMachineAssembler::Int32LessThan, "Int32LessThan", kMips64Cmp,
|
| kMachInt32},
|
| 1U},
|
| {{&RawMachineAssembler::Int32LessThanOrEqual, "Int32LessThanOrEqual",
|
| - kMips64Cmp32, kMachInt32},
|
| + kMips64Cmp, kMachInt32},
|
| 1U},
|
| - {{&RawMachineAssembler::Int32GreaterThan, "Int32GreaterThan", kMips64Cmp32,
|
| + {{&RawMachineAssembler::Int32GreaterThan, "Int32GreaterThan", kMips64Cmp,
|
| kMachInt32},
|
| 1U},
|
| {{&RawMachineAssembler::Int32GreaterThanOrEqual, "Int32GreaterThanOrEqual",
|
| - kMips64Cmp32, kMachInt32},
|
| + kMips64Cmp, kMachInt32},
|
| 1U},
|
| - {{&RawMachineAssembler::Uint32LessThan, "Uint32LessThan", kMips64Cmp32,
|
| + {{&RawMachineAssembler::Uint32LessThan, "Uint32LessThan", kMips64Cmp,
|
| kMachUint32},
|
| 1U},
|
| {{&RawMachineAssembler::Uint32LessThanOrEqual, "Uint32LessThanOrEqual",
|
| - kMips64Cmp32, kMachUint32},
|
| + kMips64Cmp, kMachUint32},
|
| 1U}};
|
|
|
|
|
| @@ -753,7 +752,7 @@ TEST_F(InstructionSelectorTest, Word32EqualWithZero) {
|
| m.Return(m.Word32Equal(m.Parameter(0), m.Int32Constant(0)));
|
| Stream s = m.Build();
|
| ASSERT_EQ(1U, s.size());
|
| - EXPECT_EQ(kMips64Cmp32, s[0]->arch_opcode());
|
| + EXPECT_EQ(kMips64Cmp, s[0]->arch_opcode());
|
| EXPECT_EQ(kMode_None, s[0]->addressing_mode());
|
| ASSERT_EQ(2U, s[0]->InputCount());
|
| EXPECT_EQ(1U, s[0]->OutputCount());
|
| @@ -765,7 +764,7 @@ TEST_F(InstructionSelectorTest, Word32EqualWithZero) {
|
| m.Return(m.Word32Equal(m.Int32Constant(0), m.Parameter(0)));
|
| Stream s = m.Build();
|
| ASSERT_EQ(1U, s.size());
|
| - EXPECT_EQ(kMips64Cmp32, s[0]->arch_opcode());
|
| + EXPECT_EQ(kMips64Cmp, s[0]->arch_opcode());
|
| EXPECT_EQ(kMode_None, s[0]->addressing_mode());
|
| ASSERT_EQ(2U, s[0]->InputCount());
|
| EXPECT_EQ(1U, s[0]->OutputCount());
|
|
|