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

Unified Diff: runtime/vm/intrinsifier_arm.cc

Issue 1121613003: Implement bigint shift intrinsics on MIPS. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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
« no previous file with comments | « no previous file | runtime/vm/intrinsifier_mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier_arm.cc
===================================================================
--- runtime/vm/intrinsifier_arm.cc (revision 45484)
+++ runtime/vm/intrinsifier_arm.cc (working copy)
@@ -875,7 +875,7 @@
__ Bind(&loop_entry);
__ teq(R8, Operand(R6));
__ b(&loop, NE);
- __ str(R1, Address(R8, Bigint::kBytesPerDigit, Address::PostIndex));
+ __ str(R1, Address(R8, 0));
// Returning Object::null() is not required, since this method is private.
__ Ret();
}
« no previous file with comments | « no previous file | runtime/vm/intrinsifier_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698