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

Unified Diff: runtime/vm/intrinsifier_arm.cc

Issue 154393003: Implement eager instantiation and canonicalization of type arguments at run (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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
Index: runtime/vm/intrinsifier_arm.cc
===================================================================
--- runtime/vm/intrinsifier_arm.cc (revision 32446)
+++ runtime/vm/intrinsifier_arm.cc (working copy)
@@ -203,9 +203,6 @@
__ b(&checked_ok, EQ);
// Check if it's dynamic.
- // For now handle only TypeArguments and bail out if InstantiatedTypeArgs.
- __ CompareClassId(R1, kTypeArgumentsCid, R0);
- __ b(&fall_through, NE);
// Get type at index 0.
__ ldr(R0, FieldAddress(R1, TypeArguments::type_at_offset(0)));
__ CompareObject(R0, Type::ZoneHandle(Type::DynamicType()));

Powered by Google App Engine
This is Rietveld 408576698