Chromium Code Reviews| Index: src/frames-inl.h |
| diff --git a/src/frames-inl.h b/src/frames-inl.h |
| index 481b83bf5a06879fd1fc78dd90864d22e5a1fccd..fef3232321ef041219f6686916180507495883b8 100644 |
| --- a/src/frames-inl.h |
| +++ b/src/frames-inl.h |
| @@ -29,9 +29,15 @@ |
| #define V8_FRAMES_INL_H_ |
| #include "frames.h" |
| -#ifdef ARM |
| +#ifdef V8_ARCH_ARM |
| #include "arm/frames-arm.h" |
| -#else |
| +#endif |
| + |
| +#ifdef V8_ARCH_X64 |
| +#include "ia64/frames-ia64.h" |
|
Mads Ager (chromium)
2009/04/29 12:27:24
ia64 / x64 confusion.
Lasse Reichstein
2009/04/29 13:05:41
Yes, my bad.
|
| +#endif |
| + |
| +#ifdef V8_ARCH_IA32 |
| #include "ia32/frames-ia32.h" |
| #endif |