diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-20 17:03:04 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-20 17:03:04 +0000 |
commit | a0fee14aa7831636bf6b6fc6d5fb852979c80ab4 (patch) | |
tree | db58f3f22a75c656aac8cc7600fc97e0aca34138 /gcc/integrate.c | |
parent | a9fb8e3e8ada0d6d5e764b6cd6fbccaff0e64a59 (diff) | |
download | gcc-a0fee14aa7831636bf6b6fc6d5fb852979c80ab4.tar.gz |
2004-06-20 Andrew Pinski <pinskia@physics.uc.edu>
PR middle-end/16089
* builtins.c (entry_of_function): Move to ...
* cfgrtl.c (entry_of_function): Here and make non-static.
* integrate.c (emit_initial_value_sets): Use entry_of_function.
* rtl.h (entry_of_function): Prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83415 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index df2c8234ba2..c5befd5cd2f 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -1300,7 +1300,7 @@ emit_initial_value_sets (void) seq = get_insns (); end_sequence (); - emit_insn_after (seq, get_insns ()); + emit_insn_after (seq, entry_of_function ()); } /* If the backend knows where to allocate pseudos for hard |