| 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
|
|
|
|
|