Index: src/virtual-frame.h |
diff --git a/src/virtual-frame.h b/src/virtual-frame.h |
index 8c76f8a16b5f2ed5538fc7366de394ee07eaaea6..794f1567c3c991ec7f06d19f2386a751c687d19b 100644 |
--- a/src/virtual-frame.h |
+++ b/src/virtual-frame.h |
@@ -202,16 +202,12 @@ class FrameElement BASE_EMBEDDED { |
} } // namespace v8::internal |
-#ifdef V8_ARCH_ARM |
-#include "arm/virtual-frame-arm.h" |
-#endif |
- |
-#ifdef V8_ARCH_X64 |
-#include "x64/virtual-frame-x64.h" |
-#endif |
- |
-#ifdef V8_ARCH_IA32 |
+#if V8_TARGET_ARCH_IA32 |
#include "ia32/virtual-frame-ia32.h" |
+#elif V8_TARGET_ARCH_X64 |
+#include "x64/virtual-frame-x64.h" |
+#elif V8_TARGET_ARCH_ARM |
+#include "arm/virtual-frame-arm.h" |
#endif |
#endif // V8_VIRTUAL_FRAME_H_ |