| Index: test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| diff --git a/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc b/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| index 5992bcfc3b14af2bea2e0d89c557f1ad7ab4db2b..6317d91fa95a77a258632587975119a8847f879d 100644
|
| --- a/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| +++ b/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| @@ -1899,36 +1899,6 @@ TEST_F(InstructionSelectorTest, Float64AddWithFloat64Mul) {
|
| }
|
|
|
|
|
| -TEST_F(InstructionSelectorTest, Float32SubWithMinusZero) {
|
| - StreamBuilder m(this, MachineType::Float32(), MachineType::Float32());
|
| - Node* const p0 = m.Parameter(0);
|
| - Node* const n = m.Float32Sub(m.Float32Constant(-0.0f), p0);
|
| - m.Return(n);
|
| - Stream s = m.Build();
|
| - ASSERT_EQ(1U, s.size());
|
| - EXPECT_EQ(kArmVnegF32, 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()));
|
| -}
|
| -
|
| -
|
| -TEST_F(InstructionSelectorTest, Float64SubWithMinusZero) {
|
| - StreamBuilder m(this, MachineType::Float64(), MachineType::Float64());
|
| - Node* const p0 = m.Parameter(0);
|
| - Node* const n = m.Float64Sub(m.Float64Constant(-0.0), p0);
|
| - m.Return(n);
|
| - Stream s = m.Build();
|
| - ASSERT_EQ(1U, s.size());
|
| - EXPECT_EQ(kArmVnegF64, 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()));
|
| -}
|
| -
|
| -
|
| TEST_F(InstructionSelectorTest, Float32SubWithFloat32Mul) {
|
| StreamBuilder m(this, MachineType::Float32(), MachineType::Float32(),
|
| MachineType::Float32(), MachineType::Float32());
|
|
|