Commit bb210aaf by Michael Meissner Committed by Michael Meissner

Fix thinko

From-SVN: r22432
parent 5376a30c
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> Tue Sep 15 14:10:54 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
* except.h (struct eh_entry): Add false_label field. * except.h (struct eh_entry): Add false_label field.
......
...@@ -1195,7 +1195,7 @@ extern struct rtx_def *gen_compare_reg (); ...@@ -1195,7 +1195,7 @@ extern struct rtx_def *gen_compare_reg ();
case CONST: \ case CONST: \
case LABEL_REF: \ case LABEL_REF: \
case SYMBOL_REF: \ case SYMBOL_REF: \
return (TARGET_FLAG_C_SERIES ? 6 : 8); \ return (TARGET_C_SERIES ? 6 : 8); \
case CONST_DOUBLE: \ case CONST_DOUBLE: \
if ((RTX) == CONST0_RTX (DFmode) || (RTX) == CONST0_RTX (SFmode) \ if ((RTX) == CONST0_RTX (DFmode) || (RTX) == CONST0_RTX (SFmode) \
|| (RTX) == CONST1_RTX (DFmode) || (RTX) == CONST1_RTX (SFmode))\ || (RTX) == CONST1_RTX (DFmode) || (RTX) == CONST1_RTX (SFmode))\
......
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