diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-12-27 16:35:00 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2000-12-27 16:35:00 +0000 |
commit | 715e2ab149f1752fef5cf2107348b1b1e958111a (patch) | |
tree | 38f45e2a4b284aeb88823d134abeb694fb06d627 /gcc | |
parent | 46159c151de000016ce85c0f2e8c200f96e71ea0 (diff) | |
download | gcc-715e2ab149f1752fef5cf2107348b1b1e958111a.zip gcc-715e2ab149f1752fef5cf2107348b1b1e958111a.tar.gz gcc-715e2ab149f1752fef5cf2107348b1b1e958111a.tar.bz2 |
rtl.c (copy_most_rtx, [...]): Copy frame_related flag.
* rtl.c (copy_most_rtx, shallow_copy_rtx): Copy frame_related
flag.
From-SVN: r38500
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/rtl.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae90957..712b363 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-12-27 Alexandre Oliva <aoliva@redhat.com> + + * rtl.c (copy_most_rtx, shallow_copy_rtx): Copy frame_related + flag. + 2000-12-27 Bruce Korb <bkorb@gnu.org> * fixinc/Makefile.in: fix for ancient Bourne shell @@ -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]; |