Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
| 3 | #ifndef ART_SRC_CONSTANTS_H_ |
| 4 | #define ART_SRC_CONSTANTS_H_ |
| 5 | |
| 6 | #if defined(__i386__) |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame^] | 7 | #include "constants_x86.h" |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 8 | #elif defined(__arm__) |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame^] | 9 | #include "constants_arm.h" |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 10 | #endif |
| 11 | |
| 12 | #endif // ART_SRC_CONSTANTS_H_ |