From e85427f984beadddb4bcd2b1948454f1b872c1f5 Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Sun, 17 Sep 2000 11:32:14 +0000 Subject: Fix problem with last checkin - applied a slightly earlier version than what was approved From-SVN: r36468 --- gcc/optabs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/optabs.c') diff --git a/gcc/optabs.c b/gcc/optabs.c index 136f178..f688ca1 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 (); -- cgit v1.1