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

Unified Diff: src/execution.cc

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
Index: src/execution.cc
diff --git a/src/execution.cc b/src/execution.cc
index 8fa059abf8562ea7373b27b7b51609fe5e8e8db4..eb39d640fa7533abb5b8a2b18719df9124cc3cf4 100644
--- a/src/execution.cc
+++ b/src/execution.cc
@@ -32,9 +32,15 @@
#include "api.h"
#include "codegen-inl.h"
-#ifdef ARM
+#ifdef V8_ARCH_ARM
#include "arm/simulator-arm.h"
-#else // ia32
+#endif
+
+#ifdef V8_ARCH_X64
+#include "x64/simulator-x64.h"
+#endif
+
+#ifdef V8_ARCH_IA32
#include "ia32/simulator-ia32.h"
#endif

Powered by Google App Engine
This is Rietveld 408576698