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

Unified Diff: runtime/vm/globals.h

Issue 1293703003: Attempt to fix MIPS inline assembly (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/globals.h
diff --git a/runtime/vm/globals.h b/runtime/vm/globals.h
index d8fc83e6485d7716e843f4a76e11bdd360b6249e..076be03edc0459bf3486fe59d82e225745b938c2 100644
--- a/runtime/vm/globals.h
+++ b/runtime/vm/globals.h
@@ -113,7 +113,7 @@ static const uword kZapUninitializedWord = 0xabababababababab;
#elif defined(HOST_ARCH_ARM64)
#define COPY_FP_REGISTER(fp) asm volatile ("mov %0, %%x29" : "=r" (fp) );
#elif defined(HOST_ARCH_MIPS)
-#define COPY_FP_REGISTER(fp) asm volatile ("move %0, %%r30" : "=r" (fp) );
+#define COPY_FP_REGISTER(fp) asm volatile ("move %0, $r30" : "=r" (fp) );
zra 2015/08/14 14:30:02 move %0, $fp builds
#else
#error Unknown host architecture.
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698