(simplify_unary_operation): Remove "else".

From-SVN: r1828
This commit is contained in:
Richard Kenner 1992-08-14 07:41:11 -04:00
parent 266007a7d6
commit f89e32e950
1 changed files with 2 additions and 2 deletions

View File

@ -2861,8 +2861,8 @@ simplify_unary_operation (code, mode, op, op_mode)
}
#endif
else if (GET_CODE (op) == CONST_INT
&& width <= HOST_BITS_PER_WIDE_INT && width > 0)
if (GET_CODE (op) == CONST_INT
&& width <= HOST_BITS_PER_WIDE_INT && width > 0)
{
register HOST_WIDE_INT arg0 = INTVAL (op);
register HOST_WIDE_INT val;