Commit b2e426a0 by Igor Shevlyakov Committed by Richard Henderson

expr.c (compare_from_rtx): Generate comparison between op0 and op1 rather than…

expr.c (compare_from_rtx): Generate comparison between op0 and op1 rather than cc0 and 0 in a case when...

        * expr.c (compare_from_rtx): Generate comparison between op0 and op1
        rather than cc0 and 0 in a case when HAVE_cc0 is not defined.

From-SVN: r54122
parent 8b968bd1
2002-05-31 Igor Shevlyakov <igor@microunity.com>
* expr.c (compare_from_rtx): Generate comparison between op0 and op1
rather than cc0 and 0 in a case when HAVE_cc0 is not defined.
2002-05-31 Matthew Woodcraft <mattheww@chiark.greenend.org.uk>
* gcc.c (cpp_unique_options): Remove "-d" options.
......
......@@ -10091,7 +10091,11 @@ compare_from_rtx (op0, op1, code, unsignedp, mode, size)
emit_cmp_insn (op0, op1, code, size, mode, unsignedp);
#if HAVE_cc0
return gen_rtx_fmt_ee (code, VOIDmode, cc0_rtx, const0_rtx);
#else
return gen_rtx_fmt_ee (code, VOIDmode, op0, op1);
#endif
}
/* Like do_compare_and_jump but expects the values to compare as two rtx's.
......
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