summaryrefslogtreecommitdiff
path: root/lib/libm/src
diff options
context:
space:
mode:
authorbjh21 <bjh21@NetBSD.org>2000-05-09 21:55:44 +0000
committerbjh21 <bjh21@NetBSD.org>2000-05-09 21:55:44 +0000
commit6c97e2bd7817f6eb36ea04f65488ea1e95cb158f (patch)
tree499bc6851619a39119e4f4e8919311cbb9b2948d /lib/libm/src
parent6a36c27519360fbbcb9b0533b93429d400c5e315 (diff)
Initial commit of arm26 port
Diffstat (limited to 'lib/libm/src')
-rw-r--r--lib/libm/src/math_private.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libm/src/math_private.h b/lib/libm/src/math_private.h
index ead3b5ae494..6cdbdea4830 100644
--- a/lib/libm/src/math_private.h
+++ b/lib/libm/src/math_private.h
@@ -11,7 +11,7 @@
/*
* from: @(#)fdlibm.h 5.1 93/09/24
- * $NetBSD: math_private.h,v 1.8 1999/07/02 15:37:42 simonb Exp $
+ * $NetBSD: math_private.h,v 1.9 2000/05/09 21:55:53 bjh21 Exp $
*/
#ifndef _MATH_PRIVATE_H_
@@ -34,11 +34,11 @@
ints. */
/*
- * The arm32 port is little endian except for the FP word order which is
+ * The ARM ports are little endian except for the FP word order which is
* big endian.
*/
-#if (BYTE_ORDER == BIG_ENDIAN) || defined(__arm32__)
+#if (BYTE_ORDER == BIG_ENDIAN) || defined(__arm32__) || defined(__arm26__)
typedef union
{
@@ -52,7 +52,7 @@ typedef union
#endif
-#if (BYTE_ORDER == LITTLE_ENDIAN) && !defined(__arm32__)
+#if (BYTE_ORDER == LITTLE_ENDIAN) && !defined(__arm32__) && !defined(__arm26__)
typedef union
{