https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95408
Bug ID: 95408 Summary: Failure to optimize bitwise and with negated conditional using the same operand to conditional with decremented operand Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: gabravier at gmail dot com Target Milestone: --- bool f(int x) { return x & -((unsigned)x < some_constant); } This can be optimized to `return (unsigned)(x - 1) < (some_constant - 1);`. This transformation is done by LLVM, but not by GCC.