diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-10 03:14:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-10 03:14:01 +0000 |
commit | 31307f870770f7af155f434fffea455fe6b5f29c (patch) | |
tree | 2bf0144171231e2cb1a78987defceb22863e3a7f /libc/sysdeps/linux/arm/bits/endian.h | |
parent | afe62a07d12e83f5c9ec0a403e360529553733c4 (diff) |
add support for cirrus maverick fpu using patch for glibc http://yann.poupet.free.fr/ep93xx/
Diffstat (limited to 'libc/sysdeps/linux/arm/bits/endian.h')
-rw-r--r-- | libc/sysdeps/linux/arm/bits/endian.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/arm/bits/endian.h b/libc/sysdeps/linux/arm/bits/endian.h index 4f60bd7d2..27946cdee 100644 --- a/libc/sysdeps/linux/arm/bits/endian.h +++ b/libc/sysdeps/linux/arm/bits/endian.h @@ -12,7 +12,7 @@ /* FPA floating point units are always big-endian, irrespective of the CPU endianness. VFP floating point units use the same endianness as the rest of the system. */ -#ifdef __VFP_FP__ +#if defined __VFP_FP__ || defined __MAVERICK__ # define __FLOAT_WORD_ORDER __BYTE_ORDER #else # define __FLOAT_WORD_ORDER __BIG_ENDIAN |