Fix thinko

From-SVN: r22432
This commit is contained in:
Michael Meissner 1998-09-15 16:32:49 +00:00 committed by Michael Meissner
parent 5376a30c4d
commit bb210aafb4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Sep 15 19:31:58 1998 Michael Meissner <meissner@cygnus.com>
* i960.h (CONST_COSTS): Fix thinko. Test flag, not the constant
flag bit mask.
Tue Sep 15 14:10:54 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
* except.h (struct eh_entry): Add false_label field.

View File

@ -1195,7 +1195,7 @@ extern struct rtx_def *gen_compare_reg ();
case CONST: \
case LABEL_REF: \
case SYMBOL_REF: \
return (TARGET_FLAG_C_SERIES ? 6 : 8); \
return (TARGET_C_SERIES ? 6 : 8); \
case CONST_DOUBLE: \
if ((RTX) == CONST0_RTX (DFmode) || (RTX) == CONST0_RTX (SFmode) \
|| (RTX) == CONST1_RTX (DFmode) || (RTX) == CONST1_RTX (SFmode))\