diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/mips/bits/atomic.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 52f8c11867..1a7d519039 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-01-28 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/mips/bits/atomic.h [_MIPS_SIM == _ABIN32] + (__HAVE_64B_ATOMICS): Define to 0. + 2015-01-28 Adhemerval Zanellla <azanella@linux.vnet.ibm.com> [BZ #17885] diff --git a/sysdeps/mips/bits/atomic.h b/sysdeps/mips/bits/atomic.h index ddcb0391a6..a39188160b 100644 --- a/sysdeps/mips/bits/atomic.h +++ b/sysdeps/mips/bits/atomic.h @@ -44,7 +44,7 @@ typedef uintmax_t uatomic_max_t; #define MIPS_PUSH_MIPS2 #endif -#if _MIPS_SIM == _ABIO32 +#if _MIPS_SIM == _ABIO32 || _MIPS_SIM == _ABIN32 #define __HAVE_64B_ATOMICS 0 #else #define __HAVE_64B_ATOMICS 1 |