[Bug rtl-optimization/75964] insn combiner removes comparison after ABS
gjl at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Thu Feb 9 21:27:00 GMT 2017
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75964
Georg-Johann Lay <gjl at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |diagnostic
--- Comment #2 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
(In reply to Eric Botcazou from comment #1)
> > After pass .combine, the 2nd comparison is missing, presumably because
> > combiner invokes signed overflow on ABS which does not apply because all
> > computations are performed as unsigned.
>
> Then you should have a warning with -Wstrict-overflow; this possibly comes
> from simplify-rtx.c:simplify_const_relational_operation in this case.
With -Wstrict-overflow=2 and avr-gcc-6.3 I get
warning: assuming signed overflow does not occur when assuming abs (x) >= 0 is
true [-Wstrict-overflow]
So it's not only wrong code but also wrong diagnostic...
More information about the Gcc-bugs
mailing list