1  /* PR tree-optimization/91201 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -msse2 -mno-sse3 -mtune=k8 -masm=att" } */
       4  /* { dg-final { scan-assembler-not "\tmovd\t%xmm0, %eax" } } */
       5  /* { dg-final { scan-assembler "\tmov(zbl|b)\t\[^\n\r]*\\(%" } } */
       6  
       7  typedef unsigned char V __attribute__((vector_size (16)));
       8  
       9  unsigned char
      10  foo (V x)
      11  {
      12    return x[0];
      13  }