https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113734
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #25 from Jakub Jelinek <jakub at gcc dot gnu.org> --- __attribute__ ((noipa, noinline)) The ", noinline" part there is useless. noipa attribute implies noinline, noclone, no_icf already. It is only useful if one wants to bisect to old gcc versions which didn't support noipa attribute, or compare to LLVM (which doesn't have noipa attribute).