diff options
author | Torvald Riegel <triegel@redhat.com> | 2014-11-21 14:09:21 +0100 |
---|---|---|
committer | Torvald Riegel <triegel@redhat.com> | 2014-11-21 14:09:21 +0100 |
commit | 0d79fa53b4fc43896a5732b84c763c141e1f170b (patch) | |
tree | ee7f09d04ed4357afd38a9c9cd7daa1dd90778ea | |
parent | b59d114bd1e0571fba85b3cbcc61d4f4b42f5d1b (diff) | |
download | glibc-0d79fa53b4fc43896a5732b84c763c141e1f170b.zip glibc-0d79fa53b4fc43896a5732b84c763c141e1f170b.tar.gz glibc-0d79fa53b4fc43896a5732b84c763c141e1f170b.tar.bz2 |
microblaze: 64b atomic operations are not supported.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/microblaze/bits/atomic.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2014-11-21 Torvald Riegel <triegel@redhat.com> + + * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value + by setting it to 0. 64b atomics are not supported currently. + 2014-11-21 Alexandre Oliva <aoliva@redhat.com> [BZ #16469] diff --git a/sysdeps/microblaze/bits/atomic.h b/sysdeps/microblaze/bits/atomic.h index 395162d..315c872 100644 --- a/sysdeps/microblaze/bits/atomic.h +++ b/sysdeps/microblaze/bits/atomic.h @@ -35,7 +35,7 @@ typedef uintptr_t uatomicptr_t; typedef intmax_t atomic_max_t; typedef uintmax_t uatomic_max_t; -#define __HAVE_64B_ATOMICS 1 +#define __HAVE_64B_ATOMICS 0 #define USE_ATOMIC_COMPILER_BUILTINS 0 |