Index: test/cctest/test-types.cc |
diff --git a/test/cctest/test-types.cc b/test/cctest/test-types.cc |
index f6cdb26c504b2f915a36cc0ed3d04e2a77450b92..3a6c20443ad43f81cb9621dd10caf23a5a63da11 100644 |
--- a/test/cctest/test-types.cc |
+++ b/test/cctest/test-types.cc |
@@ -1866,18 +1866,6 @@ struct Tests { |
} |
} |
} |
- |
- void HTypeFromType() { |
- for (TypeIterator it1 = T.types.begin(); it1 != T.types.end(); ++it1) { |
- for (TypeIterator it2 = T.types.begin(); it2 != T.types.end(); ++it2) { |
- Type* type1 = *it1; |
- Type* type2 = *it2; |
- HType htype1 = HType::FromType(type1); |
- HType htype2 = HType::FromType(type2); |
- CHECK(!type1->Is(type2) || htype1.IsSubtypeOf(htype2)); |
- } |
- } |
- } |
}; |
TEST(IsSomeType_zone) { Tests().IsSomeType(); } |
@@ -1931,5 +1919,3 @@ TEST(Intersect_zone) { Tests().Intersect(); } |
TEST(Distributivity_zone) { Tests().Distributivity(); } |
TEST(GetRange_zone) { Tests().GetRange(); } |
- |
-TEST(HTypeFromType_zone) { Tests().HTypeFromType(); } |