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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 21885003: Enables unboxed mints in ia32 javascript int compatability mode. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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/intermediate_language.cc
===================================================================
--- runtime/vm/intermediate_language.cc (revision 25734)
+++ runtime/vm/intermediate_language.cc (working copy)
@@ -1076,7 +1076,9 @@
bool BinarySmiOpInstr::CanDeoptimize() const {
+#if defined(TARGET_ARCH_X64)
if (FLAG_throw_on_javascript_int_overflow) return true;
srdjan 2013/08/02 18:07:22 Instead of the architecture specific ifdef you cou
zra 2013/08/02 18:30:27 Done.
+#endif
switch (op_kind()) {
case Token::kBIT_AND:
case Token::kBIT_OR:

Powered by Google App Engine
This is Rietveld 408576698