Index: test/cctest/compiler/test-representation-change.cc |
diff --git a/test/cctest/compiler/test-representation-change.cc b/test/cctest/compiler/test-representation-change.cc |
index 4d054fcaced7d34ab7e3ea3c120ccff22cd981b7..ce3564301c393ccd46f19501dba34e5faa0b7057 100644 |
--- a/test/cctest/compiler/test-representation-change.cc |
+++ b/test/cctest/compiler/test-representation-change.cc |
@@ -651,23 +651,7 @@ TEST(Nops) { |
TEST(TypeErrors) { |
RepresentationChangerTester r; |
- // Wordish cannot be implicitly converted to/from comparison conditions. |
- r.CheckTypeError(MachineRepresentation::kWord8, Type::Number(), |
- MachineRepresentation::kBit); |
- r.CheckTypeError(MachineRepresentation::kWord16, Type::Number(), |
- MachineRepresentation::kBit); |
- r.CheckTypeError(MachineRepresentation::kWord32, Type::Number(), |
- MachineRepresentation::kBit); |
- r.CheckTypeError(MachineRepresentation::kWord64, Type::Number(), |
- MachineRepresentation::kBit); |
- |
- // Floats cannot be implicitly converted to/from comparison conditions. |
- r.CheckTypeError(MachineRepresentation::kFloat64, Type::Number(), |
- MachineRepresentation::kBit); |
- |
// Floats cannot be implicitly converted to/from comparison conditions. |
- r.CheckTypeError(MachineRepresentation::kFloat32, Type::Number(), |
- MachineRepresentation::kBit); |
r.CheckTypeError(MachineRepresentation::kBit, Type::Number(), |
MachineRepresentation::kFloat32); |
r.CheckTypeError(MachineRepresentation::kBit, Type::Boolean(), |