summaryrefslogtreecommitdiffstats
path: root/libm/math_private.h
diff options
context:
space:
mode:
authorCarmelo Amoroso <carmelo.amoroso@st.com>2008-06-18 15:28:29 +0000
committerCarmelo Amoroso <carmelo.amoroso@st.com>2008-06-18 15:28:29 +0000
commitfb7f0f49c739f96f2867fbfebdfea4eac4af70db (patch)
treebc170d382f0306d32fd5c525a40fcecc7d19df75 /libm/math_private.h
parent14fcad0fe4c8ded4dc3f5aa0c014e3cfcc38307b (diff)
downloaduClibc-alpine-fb7f0f49c739f96f2867fbfebdfea4eac4af70db.tar.bz2
uClibc-alpine-fb7f0f49c739f96f2867fbfebdfea4eac4af70db.tar.xz
Synch libm with trunk
Diffstat (limited to 'libm/math_private.h')
-rw-r--r--libm/math_private.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/libm/math_private.h b/libm/math_private.h
index 75ca03ecb..b0d948c07 100644
--- a/libm/math_private.h
+++ b/libm/math_private.h
@@ -35,13 +35,14 @@
ints. */
/*
- * Math on arm is special:
+ * Math on arm is special (read: stupid):
* For FPA, float words are always big-endian.
- * For VFP, floats words follow the memory system mode.
+ * For VFP, float words follow the memory system mode.
+ * For Maverick, float words are always little-endian.
*/
-#if (__BYTE_ORDER == __BIG_ENDIAN) || \
- (!defined(__VFP_FP__) && (defined(__arm__) || defined(__thumb__)))
+#if !defined(__MAVERICK__) && ((__BYTE_ORDER == __BIG_ENDIAN) || \
+ (!defined(__VFP_FP__) && (defined(__arm__) || defined(__thumb__))))
typedef union
{