diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-06-20 17:03:04 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-06-20 10:03:04 -0700 |
commit | 9127884102347420f8185b819c137610b7e51126 (patch) | |
tree | db58f3f22a75c656aac8cc7600fc97e0aca34138 /gcc/integrate.c | |
parent | e0c003921ff62fde521a14436bbeac899181a7b3 (diff) | |
download | gcc-9127884102347420f8185b819c137610b7e51126.zip gcc-9127884102347420f8185b819c137610b7e51126.tar.gz gcc-9127884102347420f8185b819c137610b7e51126.tar.bz2 |
re PR middle-end/16089 (unwind-dw2.c:1311: error: insn outside basic block)
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.
From-SVN: r83415
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 df2c823..c5befd5 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 |