Index: test/compiler-unittests/instruction-selector-unittest.cc |
diff --git a/test/compiler-unittests/instruction-selector-unittest.cc b/test/compiler-unittests/instruction-selector-unittest.cc |
index 725c4313c9f61068c64408ec7d1ee8a1515544b0..91ae7cdd320667c7bf068e4f98c625c9c615ad55 100644 |
--- a/test/compiler-unittests/instruction-selector-unittest.cc |
+++ b/test/compiler-unittests/instruction-selector-unittest.cc |
@@ -72,7 +72,7 @@ InstructionSelectorTest::Stream InstructionSelectorTest::StreamBuilder::Build( |
TARGET_TEST_F(InstructionSelectorTest, ReturnParameter) { |
- StreamBuilder m(this, kMachineWord32, kMachineWord32); |
+ StreamBuilder m(this, kMachInt32, kMachInt32); |
m.Return(m.Parameter(0)); |
Stream s = m.Build(kAllInstructions); |
ASSERT_EQ(2U, s.size()); |
@@ -84,7 +84,7 @@ TARGET_TEST_F(InstructionSelectorTest, ReturnParameter) { |
TARGET_TEST_F(InstructionSelectorTest, ReturnZero) { |
- StreamBuilder m(this, kMachineWord32); |
+ StreamBuilder m(this, kMachInt32); |
m.Return(m.Int32Constant(0)); |
Stream s = m.Build(kAllInstructions); |
ASSERT_EQ(2U, s.size()); |