Commit e7397618 by Bernd Schmidt Committed by Bernd Schmidt

rtl.c (copy_rtx): Do not handle frame_related, jump or call flags specially.

	* rtl.c (copy_rtx): Do not handle frame_related, jump or call
	flags specially.

From-SVN: r178798
parent b84dad8e
2011-09-13 Bernd Schmidt <bernds@codesourcery.com>
* rtl.c (copy_rtx): Do not handle frame_related, jump or call
flags specially.
2011-09-12 Jakub Jelinek <jakub@redhat.com> 2011-09-12 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/50010 PR bootstrap/50010
...@@ -289,12 +289,6 @@ copy_rtx (rtx orig) ...@@ -289,12 +289,6 @@ copy_rtx (rtx orig)
walks over the RTL. */ walks over the RTL. */
RTX_FLAG (copy, used) = 0; RTX_FLAG (copy, used) = 0;
/* We do not copy FRAME_RELATED for INSNs. */
if (INSN_P (orig))
RTX_FLAG (copy, frame_related) = 0;
RTX_FLAG (copy, jump) = RTX_FLAG (orig, jump);
RTX_FLAG (copy, call) = RTX_FLAG (orig, call);
format_ptr = GET_RTX_FORMAT (GET_CODE (copy)); format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++) for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
......
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