Commit b9c685ae by Richard Henderson Committed by Richard Henderson

alpha.c (alpha_swapped_comparison_operator): Fix botched rtx class conversion.

        * config/alpha/alpha.c (alpha_swapped_comparison_operator): Fix
        botched rtx class conversion.

From-SVN: r79025
parent e7cbef19
2004-03-06 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (alpha_swapped_comparison_operator): Fix
botched rtx class conversion.
2004-03-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* tree.h (BUILTIN_EXP10_P, BUILTIN_EXPONENT_P, BUILTIN_SQRT_P,
......
......@@ -1137,7 +1137,7 @@ alpha_swapped_comparison_operator (rtx op, enum machine_mode mode)
enum rtx_code code;
if ((mode != GET_MODE (op) && mode != VOIDmode)
|| COMPARISON_P (op));
|| !COMPARISON_P (op))
return 0;
code = swap_condition (GET_CODE (op));
......
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