diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-02 03:46:21 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-02 03:46:21 +0000 |
commit | c838448c89657e91d35e22ee3b3686410bf32c74 (patch) | |
tree | 9e4d1916038f3be7c94ef07f6780272eff4ec580 /gcc | |
parent | a26ec131de46b70ed736ae85d4ec16f1c1b57b1d (diff) | |
download | gcc-c838448c89657e91d35e22ee3b3686410bf32c74.tar.gz |
2005-01-01 Andrew Pinski <pinskia@physics.uc.edu>
PR middle-end/19221
* function.c (get_arg_pointer_save_area): Use entry_of_function
instead of get_insns.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92802 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/function.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5f5d96e559f..50263c2c6b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-01-01 Andrew Pinski <pinskia@physics.uc.edu> + + PR middle-end/19221 + * function.c (get_arg_pointer_save_area): Use entry_of_function + instead of get_insns. + 2005-01-01 Roger Sayle <roger@eyesopen.com> Andrew Pinski <pinskia@physics.uc.edu> James E. Wilson <wilson@specifixinc.com> diff --git a/gcc/function.c b/gcc/function.c index e878dc13e1d..9f678d8f929 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4590,7 +4590,7 @@ get_arg_pointer_save_area (struct function *f) end_sequence (); push_topmost_sequence (); - emit_insn_after (seq, get_insns ()); + emit_insn_after (seq, entry_of_function ()); pop_topmost_sequence (); } |