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
This commit is contained in:
Jeffrey A Law 1998-11-19 21:23:27 +00:00 committed by Jeff Law
parent 59b67c1143
commit 9bce98db12
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Thu Nov 19 22:20:51 1998 Jeffrey A Law (law@cygnus.com)
* i860.c (single_insn_src_p): Add missing parens.
* ginclude/math-3300.h: Likewise.
Thu Nov 19 20:55:59 1998 H.J. Lu (hjl@gnu.org)
* regclass.c (init_reg_sets_1): Add prototype.

View file

@ -312,7 +312,7 @@ single_insn_src_p (op, mode)
if (CONSTANT_P (arg)
&& !(GET_CODE (arg) == CONST_INT
&& (SMALL_INT (arg)
|| INTVAL (arg) & 0xffff == 0)))
|| (INTVAL (arg) & 0xffff) == 0)))
return 0;
}
case IOR:
@ -322,7 +322,7 @@ single_insn_src_p (op, mode)
if (CONSTANT_P (XEXP (op, 1))
&& !(GET_CODE (XEXP (op, 1)) == CONST_INT
&& (SMALL_INT (XEXP (op, 1))
|| INTVAL (XEXP (op, 1)) & 0xffff == 0)))
|| (INTVAL (XEXP (op, 1)) & 0xffff) == 0)))
return 0;
case ASHIFT:

View file

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