diff options
author | 2011-07-26 09:24:52 +0000 | |
---|---|---|
committer | 2011-07-26 09:24:52 +0000 | |
commit | 80626675329654e6b943890c769bfd67004f09a9 (patch) | |
tree | e030d8dea3904b07ff75b552ca10b18432f830bc /lib/libm/src | |
parent | Backout previous, naddy@ found the following regression: (diff) | |
download | wireguard-openbsd-80626675329654e6b943890c769bfd67004f09a9.tar.xz wireguard-openbsd-80626675329654e6b943890c769bfd67004f09a9.zip |
__arm32__ -> __arm__, since our new compiler isn't defining the
former anymore. OK miod@.
Diffstat (limited to 'lib/libm/src')
-rw-r--r-- | lib/libm/src/math_private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libm/src/math_private.h b/lib/libm/src/math_private.h index 00c88387874..2abe14a7c62 100644 --- a/lib/libm/src/math_private.h +++ b/lib/libm/src/math_private.h @@ -1,4 +1,4 @@ -/* $OpenBSD: math_private.h,v 1.13 2011/07/06 00:02:42 martynas Exp $ */ +/* $OpenBSD: math_private.h,v 1.14 2011/07/26 09:24:52 martynas Exp $ */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. @@ -222,11 +222,11 @@ do { \ ints. */ /* - * The arm32 port is little endian except for the FP word order which is + * The arm port is 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(__arm__) typedef union { @@ -240,7 +240,7 @@ typedef union #endif -#if (BYTE_ORDER == LITTLE_ENDIAN) && !defined(arm32) +#if (BYTE_ORDER == LITTLE_ENDIAN) && !defined(__arm__) typedef union { |