Commit 1985ef90 by Jan Hubicka Committed by Jan Hubicka

* i386.c (ix86_expand_int_movcc): Fix RTL sharing problem

From-SVN: r56607
parent 835cb22e
Tue Aug 27 19:18:16 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.c (ix86_expand_int_movcc): Fix RTL sharing problem
Tue Aug 27 18:01:45 CEST 2002 Jan Hubicka <jh@suse.cz> Tue Aug 27 18:01:45 CEST 2002 Jan Hubicka <jh@suse.cz>
* libgcc2.c (__bb_exit_func): Properly write the summarized statistics. * libgcc2.c (__bb_exit_func): Properly write the summarized statistics.
......
...@@ -8990,7 +8990,7 @@ ix86_expand_int_movcc (operands) ...@@ -8990,7 +8990,7 @@ ix86_expand_int_movcc (operands)
emit_insn (gen_rtx_SET (VOIDmode, out, tmp)); emit_insn (gen_rtx_SET (VOIDmode, out, tmp));
} }
if (out != operands[0]) if (out != operands[0])
emit_move_insn (operands[0], out); emit_move_insn (operands[0], copy_rtx (out));
return 1; /* DONE */ return 1; /* DONE */
} }
......
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