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

Unified Diff: runtime/vm/intermediate_language_mips.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
Index: runtime/vm/intermediate_language_mips.cc
===================================================================
--- runtime/vm/intermediate_language_mips.cc (revision 36030)
+++ runtime/vm/intermediate_language_mips.cc (working copy)
@@ -570,7 +570,7 @@
case GT: __ coltd(right, left); break;
case GE: __ coled(right, left); break;
default: {
- // Should only passing the above conditions to this function.
+ // Should only be passing the above conditions to this function.
UNREACHABLE();
break;
}
@@ -2804,7 +2804,9 @@
}
value = value + kSmiTagSize;
- if (value >= kCountLimit) value = kCountLimit;
+ if (value >= kCountLimit) {
+ value = kCountLimit;
+ }
__ sra(result, left, value);
__ SmiTag(result);

Powered by Google App Engine
This is Rietveld 408576698