]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for INSN_LIST.
authorJan Hubicka <jh@suse.cz>
Mon, 1 Jan 2007 21:53:31 +0000 (22:53 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Mon, 1 Jan 2007 21:53:31 +0000 (21:53 +0000)
* emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for
INSN_LIST.

From-SVN: r120316

gcc/ChangeLog
gcc/emit-rtl.c

index fa68d1c0c24263826b84360b89c85cc4b47e9b50..5671e0161cb7281612d4b1999ef44371dd661624 100644 (file)
@@ -1,3 +1,8 @@
+2007-01-01  Jan Hubicka  <jh@suse.cz>
+
+       * emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for
+       INSN_LIST.
+
 2007-01-01  Mike Stump  <mrs@apple.com>
 
        * configure.ac (HAVE_GAS_LITERAL16): Add autoconf check for
index 517c1a37c8cdd65aa4fac5bb37672102b5a11eaa..aba4b7f7166699caef4ba0bd871459adfc28102c 100644 (file)
@@ -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.  */