Author: marius Date: Thu Dec 21 01:27:32 2017 New Revision: 327053 URL: https://svnweb.freebsd.org/changeset/base/327053
Log: Remove MD atomic_load_{32,64,int,long,ptr}(9) obsolete since the addition of (conflicting) MI ones in r326971. Modified: head/sys/sparc64/include/atomic.h Modified: head/sys/sparc64/include/atomic.h ============================================================================== --- head/sys/sparc64/include/atomic.h Thu Dec 21 01:22:36 2017 (r327052) +++ head/sys/sparc64/include/atomic.h Thu Dec 21 01:27:32 2017 (r327053) @@ -258,11 +258,6 @@ atomic_fcmpset_rel_ ## name(volatile ptype p, vtype *e } \ \ static __inline vtype \ -atomic_load_ ## name(volatile ptype p) \ -{ \ - return ((vtype)atomic_cas((p), 0, 0, sz)); \ -} \ -static __inline vtype \ atomic_load_acq_ ## name(volatile ptype p) \ { \ return ((vtype)atomic_cas_acq((p), 0, 0, sz)); \ _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"