(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr104499.c
       1  /* PR tree-optimization/104499 */
       2  
       3  typedef int __attribute__((__vector_size__ (8 * sizeof (int)))) V;
       4  
       5  V v;
       6  
       7  void
       8  foo (void)
       9  {
      10    v = ((1 | v) != 1);
      11  }