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

Unified Diff: runtime/vm/assembler_arm_test.cc

Issue 886173003: VM: Align implementations of assembler constant pools. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 10 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/assembler_arm_test.cc
===================================================================
--- runtime/vm/assembler_arm_test.cc (revision 43497)
+++ runtime/vm/assembler_arm_test.cc (working copy)
@@ -62,13 +62,13 @@
#if defined(USING_SIMULATOR)
// ARMv7 is the default.
HostCPUFeatures::set_arm_version(ARMv6);
- __ LoadDecodableImmediate(R0, 0x12345678 << 1);
+ __ LoadPatchableImmediate(R0, 0x12345678 << 1);
HostCPUFeatures::set_arm_version(ARMv7);
- __ LoadDecodableImmediate(R1, 0x12345678);
+ __ LoadPatchableImmediate(R1, 0x12345678);
__ sub(R0, R0, Operand(R1));
__ bx(LR);
#else
- __ LoadDecodableImmediate(R0, 0x12345678);
+ __ LoadPatchableImmediate(R0, 0x12345678);
__ bx(LR);
#endif
}

Powered by Google App Engine
This is Rietveld 408576698