(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sse-8.c
       1  /* PR target/14343 */
       2  /* Origin: <Pawe Sikora <pluto@ds14.agh.edu.pl> */
       3  
       4  /* { dg-do compile } */
       5  /* { dg-require-effective-target ia32 } */
       6  /* { dg-options "-march=pentium3" } */
       7  
       8  int main() 
       9  { 
      10    typedef long long int v __attribute__ ((vector_size (16))); 
      11    v a, b; 
      12    a = b; 
      13    return 0; 
      14  }