https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106061
Yann Droneaud <yann at droneaud dot fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |yann at droneaud dot fr --- Comment #6 from Yann Droneaud <yann at droneaud dot fr> --- I'm reaching this bug too, compiling the following smaller reproducer: extern void a(void); inline void b(int c) { if (c) a(); } void d(void) { b(0); }