Added case for __arm__

The symbol defined by gcc is "__arm__", not "__arm".

This can be seen with the command:  cpp -dM < /dev/null
This commit is contained in:
Luis Ibanez 2012-12-24 15:57:43 -05:00
parent 94d996f81e
commit 9c1ea6e8c8
1 changed files with 2 additions and 2 deletions

View File

@ -153,13 +153,13 @@ void dyncall();
# endif
#endif /* __ia64 */
#ifdef __arm
#ifdef __arm__
/* Must investigate real values for ARM and Raspberry Pi */
#define CACHELINE_SIZE 32
#define MSYNC_ADDR_INCS OS_PAGE_SIZE
#undef BIGENDIAN
typedef char mach_inst; /* machine instruction */
#endif /* __arm */
#endif /* __arm__ */
#ifdef __i386
/* Through Pentium Pro/II/III, should use CPUID to get real value perhaps */