Commit 37c66aa6 by Jan Hubicka Committed by Jan Hubicka

i386.c (ix86_expand_int_movcc): Use force_operand instead of constructing insn directly.

	* i386.c (ix86_expand_int_movcc):  Use force_operand instead of constructing
	insn directly.

From-SVN: r59937
parent e598cc31
Sun Dec 8 14:57:39 CET 2002 Jan Hubicka <jh@suse.cz>
* i386.c (ix86_expand_int_movcc): Use force_operand instead of constructing
insn directly.
2002-12-07 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (*iorhi_shift_8): New.
......
......@@ -9250,16 +9250,7 @@ ix86_expand_int_movcc (operands)
&& (GET_CODE (tmp) != SUBREG || SUBREG_REG (tmp) != out))
{
if (nops == 1)
{
rtx clob;
clob = gen_rtx_REG (CCmode, FLAGS_REG);
clob = gen_rtx_CLOBBER (VOIDmode, clob);
tmp = gen_rtx_SET (VOIDmode, out, tmp);
tmp = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, tmp, clob));
emit_insn (tmp);
}
out = force_operand (tmp, out);
else
emit_insn (gen_rtx_SET (VOIDmode, out, tmp));
}
......
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