(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr80819-1.c
       1  /* PR target/80819 */
       2  /* { dg-do compile { target { ! ia32 } } } */
       3  /* { dg-options "-O2 -msse4 -mno-avx -mtune=haswell -masm=att" } */
       4  
       5  typedef unsigned long long V __attribute__((vector_size (16)));
       6  
       7  V
       8  foo (unsigned long long x, unsigned long long y)
       9  {
      10    return (V) { x, y };
      11  }
      12  
      13  /* { dg-final { scan-assembler-not "movq\[ \t]*%rsi, \[-0-9]*\\(" } } */