(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr94603.c
       1  /* PR target/94603 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Wno-implicit-function-declaration -msse -mno-sse2" } */
       4  
       5  typedef long long __attribute__ ((__vector_size__ (16))) V;
       6  
       7  V
       8  foo (V v)
       9  {
      10    return __builtin_ia32_movq128 (v);  /* { dg-error "" } */
      11  }