get_known_nonzero_bits_1 function comment a few lines earlier says
correctly it returns 0 for unknown (unlike get_nonzero_bits{,_1}
which return -1 for unknown).
2025-11-19 Jakub Jelinek <jakub@redhat.com>
* tree-ssanames.cc (get_known_nonzero_bits): Fix a pasto in
function comment, this function returns 0 if unknown rather
than -1.
}
/* Return a wide_int with known non-zero bits in SSA_NAME
- NAME, the constant for INTEGER_CST, or -1 if unknown.
+ NAME, the constant for INTEGER_CST, or 0 if unknown.
In addition to what get_known_nonzero_bits_1 handles, this handles one
level of BIT_IOR_EXPR, either as a def_stmt or tree directly. */