diff options
| author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-02 18:01:37 +0000 |
|---|---|---|
| committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-02 18:01:37 +0000 |
| commit | 3e24a03e6507a031951eb615f464fc96a2b51186 (patch) | |
| tree | 778d52e15ded4668589c346ee9763d79aed0d65b | |
| parent | 21ee4079718a6b92c88e020e3be89f80624deaf0 (diff) | |
| download | ppe42-gcc-3e24a03e6507a031951eb615f464fc96a2b51186.tar.gz ppe42-gcc-3e24a03e6507a031951eb615f464fc96a2b51186.zip | |
* config/alpha/alpha.c (alpha_gp_save_rtx): Insert the insns at the
entry by means of emit_insn_at_entry.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122480 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/alpha/alpha.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 63d305f5a7f..58d89ae689e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-02 Eric Botcazou <ebotcazou@adacore.com> + + * config/alpha/alpha.c (alpha_gp_save_rtx): Insert the insns at the + entry by means of emit_insn_at_entry. + 2007-03-02 Richard Henderson <rth@redhat.com> * expr.h (promoted_input_arg): Remove decl. diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 023bbcc92f7..1af68f98bc3 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -4781,7 +4781,7 @@ alpha_gp_save_rtx (void) seq = get_insns (); end_sequence (); - emit_insn_after (seq, entry_of_function ()); + emit_insn_at_entry (seq); cfun->machine->gp_save_rtx = m; } |

