OSDN Git Service

PR c/17844
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / i386-sse-8.c
1 /* PR target/14313 */
2 /* Origin: <Pawe Sikora <pluto@ds14.agh.edu.pl> */
3
4 /* { dg-do compile } */
5 /* { dg-options "" } */
6 /* { dg-options "-march=pentium3" { target i?86-*-* } } */
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 }