diff options
author | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-12 23:38:21 +0000 |
---|---|---|
committer | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-09-12 23:38:21 +0000 |
commit | 42f21e3e40a60233f1dbc2d48ca4fd29c17526bf (patch) | |
tree | 05723b71ab32d9bbe2fc6d8879823dc22061259c /gcc/rtl.c | |
parent | 08cc385a673243619ba8bec064ab481feb08dfa9 (diff) | |
download | gcc-42f21e3e40a60233f1dbc2d48ca4fd29c17526bf.tar.gz |
* rtl.c (copy_rtx): Do not handle frame_related, jump or call
flags specially.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178798 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index 0e11eeffa09..a812d311820 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++) |