(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sse2-pr91201-6.c
       1  /* PR tree-optimization/91201 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Os -msse2 -mno-sse3 -mtune=k8 -masm=att" } */
       4  /* { dg-final { scan-assembler "\tmovd\t%xmm0, %eax" } } */
       5  /* { dg-final { scan-assembler-not "\\(%" } } */
       6  
       7  typedef unsigned char V __attribute__((vector_size (16)));
       8  
       9  unsigned char
      10  foo (V x)
      11  {
      12    return x[0];
      13  }