From 9bce98db1204495d235605b30e280706ab72665f Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Thu, 19 Nov 1998 21:23:27 +0000 Subject: i860.c (single_insn_src_p): Add missing parens. * i860.c (single_insn_src_p): Add missing parens. * ginclude/math-3300.h: Likewise. From-SVN: r23727 --- gcc/ginclude/math-3300.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/ginclude') diff --git a/gcc/ginclude/math-3300.h b/gcc/ginclude/math-3300.h index 4e701257995..5d7ba28f67f 100644 --- a/gcc/ginclude/math-3300.h +++ b/gcc/ginclude/math-3300.h @@ -278,7 +278,7 @@ __inline static const double pow (const double x, const double y) { int i = (int) y; - if (i & 1 == 0) /* even */ + if ((i & 1) == 0) /* even */ return exp (y * log (x)); else return - exp (y * log (x)); -- cgit v1.2.1