Index: src/frames-inl.h |
diff --git a/src/frames-inl.h b/src/frames-inl.h |
index 8244c672497eccaf62bd6bd94bef18db723ef146..bf46f6bf7b5fbd1a6aef48ef328324e5f54054be 100644 |
--- a/src/frames-inl.h |
+++ b/src/frames-inl.h |
@@ -29,19 +29,15 @@ |
#define V8_FRAMES_INL_H_ |
#include "frames.h" |
-#ifdef V8_ARCH_ARM |
-#include "arm/frames-arm.h" |
-#endif |
- |
-#ifdef V8_ARCH_X64 |
-#include "x64/frames-x64.h" |
-#endif |
-#ifdef V8_ARCH_IA32 |
+#if V8_TARGET_ARCH_IA32 |
#include "ia32/frames-ia32.h" |
+#elif V8_TARGET_ARCH_X64 |
+#include "x64/frames-x64.h" |
+#elif V8_TARGET_ARCH_ARM |
+#include "arm/frames-arm.h" |
#endif |
- |
namespace v8 { namespace internal { |