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

Unified Diff: runtime/vm/intermediate_language_arm.cc

Issue 283513002: Adds far-branches to arm64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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/find_code_object_test.cc ('k') | runtime/vm/intermediate_language_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language_arm.cc
===================================================================
--- runtime/vm/intermediate_language_arm.cc (revision 36049)
+++ runtime/vm/intermediate_language_arm.cc (working copy)
@@ -3072,7 +3072,9 @@
}
value = value + kSmiTagSize;
- if (value >= kCountLimit) value = kCountLimit;
+ if (value >= kCountLimit) {
+ value = kCountLimit;
+ }
__ Asr(result, left, value);
__ SmiTag(result);
@@ -5214,7 +5216,7 @@
__ b(&do_pow, NE);
// base == 0 -> return 0;
- __ vcmpdz(base);
+ __ vcmpdz(saved_base);
__ b(&return_zero, EQ);
__ vsqrtd(result, saved_base);
« no previous file with comments | « runtime/vm/find_code_object_test.cc ('k') | runtime/vm/intermediate_language_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698