diff options
| author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-11 23:51:24 +0000 |
|---|---|---|
| committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-11 23:51:24 +0000 |
| commit | 0a88241606b49bc47f8befb959d9aaa4f2df2298 (patch) | |
| tree | 220e70ead859d0c33a794ebc57b97cc861d7707e | |
| parent | b2d381e8f611d68b6d0e3c62471963dadd14cb96 (diff) | |
| download | ppe42-gcc-0a88241606b49bc47f8befb959d9aaa4f2df2298.tar.gz ppe42-gcc-0a88241606b49bc47f8befb959d9aaa4f2df2298.zip | |
* emit-rtl.c (try_split): Use INSN_LAST, not LAST_INSN to get the
last insn created by the splitter.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54535 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/emit-rtl.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 995ee28869c..1e1174d67ca 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -112,6 +112,9 @@ Tue Jun 11 21:53:37 CEST 2002 Jan Hubicka <jh@suse.cz> 2002-06-11 Jeffrey Law <law@redhat.com> + * emit-rtl.c (try_split): Use INSN_LAST, not LAST_INSN to get the + last insn created by the splitter. + * caller-save.c (init_caller_save): Move creation of SAVEINSN and RESTINSN into into the scope of the sequence. diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index bdcd1cd03cc..2af1bae86cf 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -3222,7 +3222,7 @@ try_split (pat, trial, last) usage count so we don't delete the label. */ if (GET_CODE (trial) == INSN) { - insn = last_insn; + insn = insn_last; while (insn != NULL_RTX) { if (GET_CODE (insn) == INSN) |

