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
This commit is contained in:
Bernd Schmidt 2011-09-12 23:38:21 +00:00 committed by Bernd Schmidt
parent b84dad8e0a
commit e739761805
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,8 @@
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>
PR bootstrap/50010

View File

@ -289,12 +289,6 @@ copy_rtx (rtx orig)
walks over the RTL. */
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));
for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)