From: Andrew Pinski Date: Sun, 2 Jan 2005 03:46:21 +0000 (+0000) Subject: re PR middle-end/19221 (ICE: rtl_verify_flow_info, at cfgrtl.c:2240) X-Git-Tag: releases/gcc-4.0.0~1843 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1cb2fc7b18423a905d0c646dc7b0b6b5a023de36;p=thirdparty%2Fgcc.git re PR middle-end/19221 (ICE: rtl_verify_flow_info, at cfgrtl.c:2240) 2005-01-01 Andrew Pinski PR middle-end/19221 * function.c (get_arg_pointer_save_area): Use entry_of_function instead of get_insns. From-SVN: r92802 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5f5d96e559f3..50263c2c6b01 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-01-01 Andrew Pinski + + PR middle-end/19221 + * function.c (get_arg_pointer_save_area): Use entry_of_function + instead of get_insns. + 2005-01-01 Roger Sayle Andrew Pinski James E. Wilson diff --git a/gcc/function.c b/gcc/function.c index e878dc13e1d4..9f678d8f9298 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 (); }