summaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-02 03:46:21 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-02 03:46:21 +0000
commitc838448c89657e91d35e22ee3b3686410bf32c74 (patch)
tree9e4d1916038f3be7c94ef07f6780272eff4ec580 /gcc/function.c
parenta26ec131de46b70ed736ae85d4ec16f1c1b57b1d (diff)
downloadgcc-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/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
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 ();
}