aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@codesourcery.com>2011-09-12 23:38:21 +0000
committerBernd Schmidt <bernds@gcc.gnu.org>2011-09-12 23:38:21 +0000
commite739761805ab2640063cd0be81662ff7b41daaea (patch)
tree05723b71ab32d9bbe2fc6d8879823dc22061259c /gcc
parentb84dad8e0a8051844505c92bb71c0ed323c56a72 (diff)
downloadgcc-e739761805ab2640063cd0be81662ff7b41daaea.zip
gcc-e739761805ab2640063cd0be81662ff7b41daaea.tar.gz
gcc-e739761805ab2640063cd0be81662ff7b41daaea.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/rtl.c6
2 files changed, 5 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8253d64..2a8c05b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/rtl.c b/gcc/rtl.c
index 0e11eef..a812d31 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -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++)