https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90284

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Testcase:
int incorrect_warning()
{
    return (0 ? 0 : 0, 999);
}

int correct_warning()
{
    return (0, 999);
}

Reply via email to