Commit 9bce98db by Jeffrey A Law Committed by Jeff Law

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
parent 59b67c11
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.
......
......@@ -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:
......
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment