(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr104467.c
       1  /* { dg-do compile } */
       2  /* { dg-additional-options "-mavx" { target x86_64-*-* i?86-*-* } } */
       3  
       4  unsigned long __attribute__((__vector_size__ (8 * sizeof (long)))) u;
       5  signed long __attribute__((__vector_size__ (8 * sizeof (long)))) s;
       6  
       7  void
       8  foo (void)
       9  {
      10    s &= u + (0, 0);
      11  }