summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2021-10-29 20:24:50 +0300
committerIvan Maidanski <ivmai@mail.ru>2021-10-29 20:25:14 +0300
commit7818cefd405bfb85dd39b247b4ef5ba935ef3f50 (patch)
tree8f2ef8db8ac2b590f6483a02ccef99069e59dba7 /ChangeLog
parent6d178a99c5b722eb37f82124ea84275db9b0c3fd (diff)
downloadlibatomic_ops-7818cefd405bfb85dd39b247b4ef5ba935ef3f50.tar.gz
Do not name GCC intrinsics as C11 ones in ChangeLog and configure
* ChangeLog (7.6.0): Do not mention C11 when referring to GCC intrinsics. * configure.ac (atomic-intrinsics, AO_PREFER_BUILTIN_ATOMICS): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6fe9e0e..c370ecc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -134,16 +134,16 @@ Also, includes 7.4.8 changes
* Fix missing double_compare_and_swap_dd_acquire_read
* Fix reporting about missing and/or/xor_dd_acquire_read (test_atomic)
* Hide AO_locks symbol
-* Implement AO_CLEAR using C11 atomic intrinsic (GCC)
+* Implement AO_CLEAR using atomic intrinsic (GCC)
* Implement CAS_acquire/release/full using __atomic_compare_exchange_n (gcc)
* Implement char and/or/xor and short CAS for msftc ARM and X86[_64]
* Implement char CAS and char/short add for msftc X86[_64] (VS 2013+)
-* Implement compiler_barrier using C11 __atomic_signal_fence (GCC)
+* Implement compiler_barrier using __atomic_signal_fence (GCC)
* Implement int CAS/inc/dec for msftc/x86_64
* Implement short inc/dec directly for msftc ARM and X86[_64]
* Initial ibmc/powerpc (xlc) support
* New configure option (--enable-werror) to treat warnings as compiler errors
-* New macro AO_PREFER_BUILTIN_ATOMICS to rely on C11 atomics fully (AArch64)
+* New macro AO_PREFER_BUILTIN_ATOMICS to rely on GCC atomics fully (AArch64)
* Refine AO_nop_write comment for ARM big.LITTLE architecture
* Refine configure messages when checking for compiler options
* Refine documentation about _full memory ordering suffix