* cas_n.c (libat_compare_exchange): Add missing cast.
From-SVN: r217536
This commit is contained in:
parent
b82e9b016f
commit
ca3d99a632
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2014-11-13 Andrew Waterman <waterman@cs.berkeley.edu>
|
||||
|
||||
* cas_n.c (libat_compare_exchange): Add missing cast.
|
||||
|
||||
2014-11-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
||||
|
||||
PR target/63610
|
||||
|
|
|
@ -70,7 +70,7 @@ SIZE(libat_compare_exchange) (UTYPE *mptr, UTYPE *eptr, UTYPE newval,
|
|||
mask = -1;
|
||||
}
|
||||
|
||||
weval = *eptr << shift;
|
||||
weval = (UWORD)*eptr << shift;
|
||||
wnewval = (UWORD)newval << shift;
|
||||
woldval = __atomic_load_n (wptr, __ATOMIC_RELAXED);
|
||||
do
|
||||
|
|
Loading…
Add table
Reference in a new issue