(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
avx2-pr101286.c
       1  /* PR target/101286 */
       2  /* { dg-do compile { target int128 } } */
       3  /* { dg-options "-mavx2" } */
       4  
       5  typedef __attribute__((__vector_size__ (2 * sizeof (__int128)))) __int128 V;
       6  
       7  V
       8  foo (void)
       9  {
      10    return (V){(__int128) 1 << 64 | 1, (__int128) 1 << 64 | 1};
      11  }