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

Unified Diff: runtime/vm/stub_code_arm.cc

Issue 14733002: On MIPS, uses more branch delay slots. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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/stub_code_arm.cc
===================================================================
--- runtime/vm/stub_code_arm.cc (revision 22187)
+++ runtime/vm/stub_code_arm.cc (working copy)
@@ -517,7 +517,7 @@
__ cmp(R1, ShifterOperand(R7));
__ str(IP, Address(R1, 0), CC); // Store if unsigned lower.
__ AddImmediate(R1, kWordSize, CC);
- __ b(&loop, CS);
+ __ b(&loop, CC); // Loop until R1 == R7.
regis 2013/05/01 01:21:46 Thanks!
// Done allocating and initializing the array.
// R0: new object.

Powered by Google App Engine
This is Rietveld 408576698