* pa.c (arith_double_operand): Fix parens.

From-SVN: r18885
This commit is contained in:
Jeffrey A Law 1998-03-28 23:46:19 +00:00 committed by Jeff Law
parent c4fa346037
commit f2b147f711
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Sun Mar 29 00:42:21 1998 Jeffrey A Law (law@cygnus.com)
* pa.c (arith_double_operand): Fix parens.
* haifa-sched.c (print_pattern): Correct arg to sprintf.
* Makefile.in (libgcc1.null): Make return type for __foo void.

View File

@ -423,7 +423,7 @@ arith_double_operand (op, mode)
|| (GET_CODE (op) == CONST_DOUBLE
&& GET_MODE (op) == mode
&& VAL_14_BITS_P (CONST_DOUBLE_LOW (op))
&& (CONST_DOUBLE_HIGH (op) >= 0
&& ((CONST_DOUBLE_HIGH (op) >= 0)
== ((CONST_DOUBLE_LOW (op) & 0x1000) == 0))));
}