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

Unified Diff: src/virtual-frame.h

Issue 99186: Create build structure for X64. (Closed)
Patch Set: Created 11 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
« src/platform-freebsd.cc ('K') | « src/platform-linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/virtual-frame.h
diff --git a/src/virtual-frame.h b/src/virtual-frame.h
index ef9ab720b7e690ae5a60ecfd5d676b5f7b70e7e8..8c76f8a16b5f2ed5538fc7366de394ee07eaaea6 100644
--- a/src/virtual-frame.h
+++ b/src/virtual-frame.h
@@ -202,9 +202,15 @@ class FrameElement BASE_EMBEDDED {
} } // namespace v8::internal
-#ifdef ARM
+#ifdef V8_ARCH_ARM
#include "arm/virtual-frame-arm.h"
-#else // ia32
+#endif
+
+#ifdef V8_ARCH_X64
+#include "x64/virtual-frame-x64.h"
+#endif
+
+#ifdef V8_ARCH_IA32
#include "ia32/virtual-frame-ia32.h"
#endif
« src/platform-freebsd.cc ('K') | « src/platform-linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698