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

Unified Diff: runtime/vm/globals.h

Issue 1278943002: Attempt to fix inline assembly on Windows (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 49d710d611cdf2529c31ce86d4831dd94bd59774..72fae8ee0644cb1e2751669ccc22e4b3aa7bb7f9 100644
--- a/runtime/vm/globals.h
+++ b/runtime/vm/globals.h
@@ -94,9 +94,9 @@ static const uword kZapUninitializedWord = 0xabababababababab;
#if defined(TARGET_OS_WINDOWS)
#if defined(HOST_ARCH_IA32)
-#define COPY_FP_REGISTER(fp) __asm { movl fp, ebp }; // NOLINT
+#define COPY_FP_REGISTER(fp) __asm { mov fp, ebp }; // NOLINT
#elif defined(HOST_ARCH_X64)
-#define COPY_FP_REGISTER(fp) __asm { movq fp, rbp }; // NOLINT
+#define COPY_FP_REGISTER(fp) __asm { mov fp, rbp }; // NOLINT
#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