summaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-27 16:35:00 +0000
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>2000-12-27 16:35:00 +0000
commit56ad1e362a3bf47d8ad76ebe0ce33d82bd07422f (patch)
tree38f45e2a4b284aeb88823d134abeb694fb06d627 /gcc/rtl.c
parent5fd70b957f037f11b3517461625558e03d733c79 (diff)
downloadgcc-56ad1e362a3bf47d8ad76ebe0ce33d82bd07422f.tar.gz
* rtl.c (copy_most_rtx, shallow_copy_rtx): Copy frame_related
flag. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38500 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index f463a02d916..02bb8cbb8e6 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -486,6 +486,7 @@ copy_most_rtx (orig, may_share)
copy->volatil = orig->volatil;
copy->unchanging = orig->unchanging;
copy->integrated = orig->integrated;
+ copy->frame_related = orig->frame_related;
format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
@@ -559,6 +560,7 @@ shallow_copy_rtx (orig)
copy->volatil = orig->volatil;
copy->unchanging = orig->unchanging;
copy->integrated = orig->integrated;
+ copy->frame_related = orig->frame_related;
for (i = 0; i < GET_RTX_LENGTH (code); i++)
copy->fld[i] = orig->fld[i];