------- Comment #3 from rguenth at gcc dot gnu dot org 2009-04-21 10:31 -------
Confirmed. The following fails at -O -Winline.
void quit_mined ();
void bottom_line ();
typedef enum { False, True } FLAG;
inline void
nextfile (FLAG exitiflast)
{
if (exitiflast)
quit_mined ();
else
bottom_line ();
nextfile (True);
}
--
rguenth at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |hubicka at gcc dot gnu dot
| |org
Status|UNCONFIRMED |NEW
Component|c |middle-end
Ever Confirmed|0 |1
Keywords| |ice-on-valid-code
Last reconfirmed|0000-00-00 00:00:00 |2009-04-21 10:31:24
date| |
Summary|verify_cgraph_node failed |[4.5 Regression]
|with -O3 -Winline |verify_cgraph_node failed
| |with -O3 -Winline
Target Milestone|--- |4.5.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39834