Commit 715e2ab1 by Alexandre Oliva Committed by Alexandre Oliva

rtl.c (copy_most_rtx, [...]): Copy frame_related flag.

* rtl.c (copy_most_rtx, shallow_copy_rtx): Copy frame_related
flag.

From-SVN: r38500
parent 46159c15
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];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment