| 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 ab95023492845522981257098131b2cfbca71b8d..0953de8c40cd8cdad2e23a0dd3b2cce9dfc07d1a 100644
|
| --- a/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| +++ b/test/unittests/compiler/mips64/instruction-selector-mips64-unittest.cc
|
| @@ -801,6 +801,21 @@ TEST_F(InstructionSelectorTest, Word64EqualWithZero) {
|
| }
|
| }
|
|
|
| +
|
| +TEST_F(InstructionSelectorTest, Word32Clz) {
|
| + StreamBuilder m(this, kMachUint32, kMachUint32);
|
| + Node* const p0 = m.Parameter(0);
|
| + Node* const n = m.Word32Clz(p0);
|
| + m.Return(n);
|
| + Stream s = m.Build();
|
| + ASSERT_EQ(1U, s.size());
|
| + EXPECT_EQ(kMips64Clz, s[0]->arch_opcode());
|
| + ASSERT_EQ(1U, s[0]->InputCount());
|
| + EXPECT_EQ(s.ToVreg(p0), s.ToVreg(s[0]->InputAt(0)));
|
| + ASSERT_EQ(1U, s[0]->OutputCount());
|
| + EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output()));
|
| +}
|
| +
|
| } // namespace compiler
|
| } // namespace internal
|
| } // namespace v8
|
|
|