From: Bernd Schmidt Date: Sun, 17 Sep 2000 11:32:14 +0000 (+0000) Subject: Fix problem with last checkin - applied a slightly earlier version than what was... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e85427f984beadddb4bcd2b1948454f1b872c1f5;p=gcc.git Fix problem with last checkin - applied a slightly earlier version than what was approved From-SVN: r36468 --- diff --git a/gcc/optabs.c b/gcc/optabs.c index 136f17897ab..f688ca1657d 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -2839,7 +2839,8 @@ emit_libcall_block (insns, target, result, equiv) remove_note (last, find_reg_note (last, REG_EQUAL, NULL_RTX)); } - emit_move_insn (final_dest, target); + if (final_dest != target) + emit_move_insn (final_dest, target); if (prev == 0) first = get_insns ();