From: Ulrich Drepper Date: Sun, 13 Dec 1998 12:12:49 +0000 (+0000) Subject: Avoid -Wparentheses warning. X-Git-Tag: upstream/2.30~10627^2~2996 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f210901a5a2af98bbdc334af12f0003816bede77;p=external%2Fglibc.git Avoid -Wparentheses warning. --- diff --git a/sysdeps/alpha/fpu/fsetexcptflg.c b/sysdeps/alpha/fpu/fsetexcptflg.c index 7e373be..5764a6e 100644 --- a/sysdeps/alpha/fpu/fsetexcptflg.c +++ b/sysdeps/alpha/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. @@ -29,7 +29,7 @@ fesetexceptflag (const fexcept_t *flagp, int excepts) tmp = __ieee_get_fp_control(); /* Set all the bits that were called for. */ - tmp = tmp & ~FE_ALL_EXCEPT | *flagp & excepts & FE_ALL_EXCEPT; + tmp = (tmp & ~FE_ALL_EXCEPT) | (*flagp & excepts & FE_ALL_EXCEPT); /* And store it back. */ __ieee_set_fp_control(tmp);