Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-9]: src/common/lib/libc/arch/arm/atomic Pull up following revisio...



details:   https://anonhg.NetBSD.org/src/rev/8ced9b1da2a4
branches:  netbsd-9
changeset: 458348:8ced9b1da2a4
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Sep 17 19:25:18 2019 +0000

description:
Pull up following revision(s) (requested by skrll in ticket #202):

        common/lib/libc/arch/arm/atomic/atomic_xor_64.S: revision 1.4
        common/lib/libc/arch/arm/atomic/atomic_or_64.S: revision 1.11

__sync_{,x}or_and_fetch_8 should return new value... make it so.

diffstat:

 common/lib/libc/arch/arm/atomic/atomic_or_64.S  |  4 ++--
 common/lib/libc/arch/arm/atomic/atomic_xor_64.S |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (34 lines):

diff -r 20f2119cd059 -r 8ced9b1da2a4 common/lib/libc/arch/arm/atomic/atomic_or_64.S
--- a/common/lib/libc/arch/arm/atomic/atomic_or_64.S    Tue Sep 17 19:23:23 2019 +0000
+++ b/common/lib/libc/arch/arm/atomic/atomic_or_64.S    Tue Sep 17 19:25:18 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: atomic_or_64.S,v 1.10 2014/03/04 16:15:28 matt Exp $   */
+/*     $NetBSD: atomic_or_64.S,v 1.10.28.1 2019/09/17 19:25:18 martin Exp $    */
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -57,6 +57,6 @@
 STRONG_ALIAS(_atomic_or_64,_atomic_or_64_nv)
 ATOMIC_OP_ALIAS(atomic_or_64_nv,_atomic_or_64_nv)
 ATOMIC_OP_ALIAS(atomic_or_64,_atomic_or_64)
-CRT_ALIAS(__sync_or_and_fetch_8,_atomic_or_64)
+CRT_ALIAS(__sync_or_and_fetch_8,_atomic_or_64_nv)
 
 #endif /* _ARM_ARCH_6 */
diff -r 20f2119cd059 -r 8ced9b1da2a4 common/lib/libc/arch/arm/atomic/atomic_xor_64.S
--- a/common/lib/libc/arch/arm/atomic/atomic_xor_64.S   Tue Sep 17 19:23:23 2019 +0000
+++ b/common/lib/libc/arch/arm/atomic/atomic_xor_64.S   Tue Sep 17 19:25:18 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: atomic_xor_64.S,v 1.3 2014/03/04 16:15:28 matt Exp $   */
+/*     $NetBSD: atomic_xor_64.S,v 1.3.32.1 2019/09/17 19:25:18 martin Exp $    */
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -57,6 +57,6 @@
 STRONG_ALIAS(_atomic_xor_64,_atomic_xor_64_nv)
 ATOMIC_OP_ALIAS(atomic_xor_64_nv,_atomic_xor_64_nv)
 ATOMIC_OP_ALIAS(atomic_xor_64,_atomic_xor_64)
-CRT_ALIAS(__sync_xor_and_fetch_8,_atomic_xor_64)
+CRT_ALIAS(__sync_xor_and_fetch_8,_atomic_xor_64_nv)
 
 #endif /* _ARM_ARCH_6 */



Home | Main Index | Thread Index | Old Index