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

Unified Diff: runtime/vm/intrinsifier.cc

Issue 13004017: More preparation for removal of dart:scalarlist (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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 | « runtime/vm/intrinsifier.h ('k') | runtime/vm/intrinsifier_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier.cc
===================================================================
--- runtime/vm/intrinsifier.cc (revision 20570)
+++ runtime/vm/intrinsifier.cc (working copy)
@@ -123,10 +123,6 @@
lib = Library::MathLibrary();
MATH_LIB_INTRINSIC_LIST(SETUP_FUNCTION);
- // Set up all scalar list lib functions that can be intrisified.
- lib = Library::ScalarlistLibrary();
- SCALARLIST_LIB_INTRINSIC_LIST(SETUP_FUNCTION);
-
// Set up all dart:typeddata lib functions that can be intrisified.
lib = Library::TypedDataLibrary();
TYPEDDATA_LIB_INTRINSIC_LIST(SETUP_FUNCTION);
@@ -155,8 +151,6 @@
CORE_LIB_INTRINSIC_LIST(FIND_INTRINSICS);
} else if (lib.raw() == Library::TypedDataLibrary()) {
TYPEDDATA_LIB_INTRINSIC_LIST(FIND_INTRINSICS);
- } else if (lib.raw() == Library::ScalarlistLibrary()) {
- SCALARLIST_LIB_INTRINSIC_LIST(FIND_INTRINSICS);
} else if (lib.raw() == Library::MathLibrary()) {
MATH_LIB_INTRINSIC_LIST(FIND_INTRINSICS);
}
« no previous file with comments | « runtime/vm/intrinsifier.h ('k') | runtime/vm/intrinsifier_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698