Fix typos (missing closing parentheses)
From-SVN: r82021
This commit is contained in:
parent
c6618c0336
commit
d55b55aa1c
@ -1,3 +1,10 @@
|
|||||||
|
2004-05-19 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* config/ip2k/ip2k.c (ip2k_composite_xexp_not_uses_reg_p): Add
|
||||||
|
missing parenthesis.
|
||||||
|
* config/ip2k/ip2k.c (ip2k_unary_operator): Likewise.
|
||||||
|
* config/ip2k/ip2k.c (ip2k_binary_operator): Likewise.
|
||||||
|
|
||||||
2004-05-19 Steven Bosscher <stevenb@suse.de>
|
2004-05-19 Steven Bosscher <stevenb@suse.de>
|
||||||
|
|
||||||
* expr.c (store_constructor): Build loop start and end by hand
|
* expr.c (store_constructor): Build loop start and end by hand
|
||||||
|
@ -5973,7 +5973,7 @@ ip2k_composite_xexp_not_uses_reg_p (rtx x, unsigned int r, int rsz)
|
|||||||
&& ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 1), r, rsz)
|
&& ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 1), r, rsz)
|
||||||
&& ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 2), r, rsz));
|
&& ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 2), r, rsz));
|
||||||
|
|
||||||
if (BINARY_P (x)
|
if (BINARY_P (x))
|
||||||
return (ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 0), r, rsz)
|
return (ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 0), r, rsz)
|
||||||
&& ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 1), r, rsz));
|
&& ip2k_composite_xexp_not_uses_reg_p (XEXP (x, 1), r, rsz));
|
||||||
|
|
||||||
@ -6150,14 +6150,14 @@ int
|
|||||||
ip2k_unary_operator (rtx op, enum machine_mode mode)
|
ip2k_unary_operator (rtx op, enum machine_mode mode)
|
||||||
{
|
{
|
||||||
return ((mode == VOIDmode || GET_MODE (op) == mode)
|
return ((mode == VOIDmode || GET_MODE (op) == mode)
|
||||||
&& UNARY_P (op);
|
&& UNARY_P (op));
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
ip2k_binary_operator (rtx op, enum machine_mode mode)
|
ip2k_binary_operator (rtx op, enum machine_mode mode)
|
||||||
{
|
{
|
||||||
return ((mode == VOIDmode || GET_MODE (op) == mode)
|
return ((mode == VOIDmode || GET_MODE (op) == mode)
|
||||||
&& ARITHMETIC_P (op);
|
&& ARITHMETIC_P (op));
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Loading…
Reference in New Issue
Block a user