* cas_n.c (libat_compare_exchange): Add missing cast.

From-SVN: r217536
This commit is contained in:
Andrew Waterman 2014-11-14 06:05:51 +00:00 committed by Jeff Law
parent b82e9b016f
commit ca3d99a632
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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