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

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

Issue 59023003: Generate TypedArrayInitialize builtin in hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: CR feedback Created 7 years, 1 month 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
Index: test/cctest/test-representation.cc
diff --git a/test/cctest/test-representation.cc b/test/cctest/test-representation.cc
index 15321f3ce794e8534518f5d41ec5a25047506d82..95a65cbbf7b31d12826957946861c881549b1dac 100644
--- a/test/cctest/test-representation.cc
+++ b/test/cctest/test-representation.cc
@@ -121,4 +121,8 @@ TEST(RepresentationMoreGeneralThan) {
TestPairNegative(Representation::HeapObject(), Representation::Integer32());
TestPairPositive(Representation::Double(), Representation::Integer32());
TestPairPositive(Representation::Tagged(), Representation::Integer32());
+
+ TestPairNegative(Representation::None(), Representation::External());
+ TestPairNegative(Representation::External(), Representation::External());
+ TestPairPositive(Representation::External(), Representation::None());
}

Powered by Google App Engine
This is Rietveld 408576698