Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(654)

Unified Diff: test/cctest/test-types.cc

Issue 2302283002: Forking the type system between Crankshaft & Turbofan. (Closed)
Patch Set: Nits. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/test-field-type-tracking.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(); }
« no previous file with comments | « test/cctest/test-field-type-tracking.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698