https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96297
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |enhancement
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
It has nothing to do with inlining either.
Here is a testcase to show that:
int f(unsigned char c) {
return ((c >= '0') & (c <= '9')) ? 0xa : 0;
}
