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:
parent
59b67c1143
commit
9bce98db12
3 changed files with 8 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Add table
Reference in a new issue