Commit f2b147f7 by Jeffrey A Law Committed by Jeff Law

* pa.c (arith_double_operand): Fix parens.

From-SVN: r18885
parent c4fa3460
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.
......
......@@ -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))));
}
......
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