From: Jan Hubicka Date: Mon, 1 Jan 2007 21:53:31 +0000 (+0100) Subject: emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for INSN_LIST. X-Git-Tag: releases/gcc-4.3.0~7772 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95e2a53bfc973093444255c95bb79df8ff124f18;p=thirdparty%2Fgcc.git emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for INSN_LIST. * emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for INSN_LIST. From-SVN: r120316 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fa68d1c0c242..5671e0161cb7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-01 Jan Hubicka + + * emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for + INSN_LIST. + 2007-01-01 Mike Stump * configure.ac (HAVE_GAS_LITERAL16): Add autoconf check for diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 517c1a37c8cd..aba4b7f71666 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -5302,7 +5302,7 @@ emit_copy_of_insn_after (rtx insn, rtx after) else REG_NOTES (new) = gen_rtx_INSN_LIST (REG_NOTE_KIND (link), - copy_insn_1 (XEXP (link, 0)), REG_NOTES (new)); + XEXP (link, 0), REG_NOTES (new)); } /* Fix the libcall sequences. */