summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2019-09-15 11:14:15 +0000
committerskrll <skrll@NetBSD.org>2019-09-15 11:14:15 +0000
commiteec3db4831f0d8459df2d1aedee4a750f55ec72d (patch)
treedc4952123590f7844fb288e2d85d8a8655986876 /common
parentb9671a81aad5ce0596b1d21ea051c4c584f77456 (diff)
__sync_or_and_fetch_8 should return new value... make it do that.
Diffstat (limited to 'common')
-rw-r--r--common/lib/libc/arch/aarch64/atomic/atomic_or_64.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/lib/libc/arch/aarch64/atomic/atomic_or_64.S b/common/lib/libc/arch/aarch64/atomic/atomic_or_64.S
index 1cbe8ab3676..c99351930c3 100644
--- a/common/lib/libc/arch/aarch64/atomic/atomic_or_64.S
+++ b/common/lib/libc/arch/aarch64/atomic/atomic_or_64.S
@@ -1,4 +1,4 @@
-/* $NetBSD: atomic_or_64.S,v 1.1 2014/08/10 05:47:35 matt Exp $ */
+/* $NetBSD: atomic_or_64.S,v 1.2 2019/09/15 11:14:15 skrll Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -43,4 +43,4 @@ ATOMIC_OP64_NV(or, orr)
STRONG_ALIAS(_atomic_or_ulong_nv,_atomic_or_64_nv)
ATOMIC_OP_ALIAS(atomic_or_64_nv,_atomic_or_64_nv)
ATOMIC_OP_ALIAS(atomic_or_ulong_nv,_atomic_or_64_nv)
-STRONG_ALIAS(__sync_or_and_fetch_8,_atomic_or_64)
+STRONG_ALIAS(__sync_or_and_fetch_8,_atomic_or_64_nv)