OSDN Git Service

Target Hook to issue diagnostics for AltiVec argument to funtion
[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 /* The xstormy16 doesn't support V2DI.  */
5 /* { dg-do compile { xfail xstormy16-*-* } } */
6 /* { dg-options "" } */
7 /* { dg-options "-march=pentium3" { target i?86-*-* } } */
8 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
9
10 int main() 
11
12   typedef long long int v __attribute__ ((vector_size (16))); 
13   v a, b; 
14   a = b; 
15   return 0; 
16 }