Commit 7c1db202 by Richard Henderson Committed by Richard Henderson

alpha.c (alpha_emit_setcc): Fix test for when gen_lowpart is needed.

        * config/alpha/alpha.c (alpha_emit_setcc): Fix test for
        when gen_lowpart is needed.

From-SVN: r148413
parent 42755c21
2009-06-11 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (alpha_emit_setcc): Fix test for
when gen_lowpart is needed.
2009-06-11 Richard Henderson <rth@redhat.com>
* dwarf2out.c (def_cfa_1): Likewise for DW_CFA_cfa_offset.
* dwarf2out.c (need_data_align_sf_opcode): New.
......
......@@ -2623,7 +2623,7 @@ alpha_emit_setcc (rtx operands[], enum machine_mode cmp_mode)
emit_insn (gen_rtx_SET (VOIDmode, tmp,
gen_rtx_fmt_ee (cmp_code, cmp_mode, op0, op1)));
op0 = cmp_mode == DImode ? gen_lowpart (DImode, tmp) : tmp;
op0 = cmp_mode != DImode ? gen_lowpart (DImode, tmp) : tmp;
op1 = const0_rtx;
}
......
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