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

Unified Diff: runtime/vm/assembler_ia32.h

Issue 8818001: Add 64-bit stubs to call into the runtime and to call native functions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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 | « runtime/vm/assembler.cc ('k') | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_ia32.h
===================================================================
--- runtime/vm/assembler_ia32.h (revision 2205)
+++ runtime/vm/assembler_ia32.h (working copy)
@@ -22,12 +22,8 @@
#if defined(TESTING) || defined(DEBUG)
#if defined(TARGET_OS_WINDOWS)
-#define CHECK_STACK_ALIGNMENT { \
- uword current_sp; \
- __asm { mov current_sp, esp } \
- ASSERT((OS::ActivationFrameAlignment() == 0) || \
- (Utils::IsAligned(current_sp, OS::ActivationFrameAlignment()))); \
-}
+// The compiler may dynamically align the stack on Windows, so do not check.
+#define CHECK_STACK_ALIGNMENT { }
#else
#define CHECK_STACK_ALIGNMENT { \
uword current_sp; \
« no previous file with comments | « runtime/vm/assembler.cc ('k') | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698