(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr104496.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O -mgeneral-regs-only -msse" } */
       3  
       4  typedef int __attribute__((__vector_size__ (8))) V;
       5  V a, b;
       6  int c;
       7  
       8  void
       9  foo (void)
      10  {
      11    b = 0 != a | b << c;
      12  }