Commit 95e2a53b by Jan Hubicka Committed by Jan Hubicka

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
parent 5708d18d
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
......
......@@ -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. */
......
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