https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69241
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code Summary|[6 Regression] ICE: in |[6 Regression] ICE with |assign_temp, at |noreturn and function that |function.c:961 |return non-POD --- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Most reduced testcase: __attribute__((noreturn)) void V(int); struct R{R(const R&r){}}; R f(){V(0);} R c(){V(0);}