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

Unified Diff: runtime/vm/intrinsifier.h

Issue 10877030: Fix inlining and intrinsification for moved Math methods. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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.h
===================================================================
--- runtime/vm/intrinsifier.h (revision 11181)
+++ runtime/vm/intrinsifier.h (working copy)
@@ -64,9 +64,9 @@
V(GrowableObjectArray, set:data, GrowableArray_setData) \
V(ImmutableArray, [], ImmutableArray_getIndexed) \
V(ImmutableArray, get:length, ImmutableArray_getLength) \
- V(Math, sqrt, Math_sqrt) \
- V(Math, sin, Math_sin) \
- V(Math, cos, Math_cos) \
+ V(::, sqrt, Math_sqrt) \
+ V(::, sin, Math_sin) \
+ V(::, cos, Math_cos) \
V(Object, ==, Object_equal) \
V(FixedSizeArrayIterator, next, FixedSizeArrayIterator_next) \
V(FixedSizeArrayIterator, hasNext, FixedSizeArrayIterator_hasNext) \

Powered by Google App Engine
This is Rietveld 408576698