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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2025-10-03
             Status|UNCONFIRMED                 |WAITING

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Most of the implicit conversion should be warned about already with
-Wconversion.
It is just the conversion to bool's which are not warned about because in C90
there was no such thing as bool.  Plus the type of comparisons even in C99+ is
still int. so the warning there should not happen.

I am not sure what you are wanting to be warned about either since there is no
conversion to bool in really but rather it is `== 0` (for !) or `!= 0` (when
assigning to a bool type) that happens.

Reply via email to