Test for stack alignment.
[glibc.git] / sysdeps / arm / bits / endian.h
blob5e54cc753475e4135fdaa60dbc52295d9420b329
1 /* ARM is (usually) little-endian but with a big-endian FPU. */
3 #ifndef _ENDIAN_H
4 # error "Never use <bits/endian.h> directly; include <endian.h> instead."
5 #endif
7 #ifdef __ARMEB__
8 #define __BYTE_ORDER __BIG_ENDIAN
9 #else
10 #define __BYTE_ORDER __LITTLE_ENDIAN
11 #endif
12 #define __FLOAT_WORD_ORDER __BIG_ENDIAN