https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110554
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |internal-improvement, | |wrong-code Summary|more invalid wide Boolean |veclowering introduces |values |invalid wide Boolean values Last reconfirmed| |2023-07-05 Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Simplified testcase (that will fail on all targets): typedef int __attribute__((__vector_size__ (1 * sizeof (int)))) V; V v; void foo (void) { v = ((1 | v) != 1); }