OSDN Git Service

g++.dg/opt/strength-reduce.C: Replace 0x7fffffff with __INT_MAX__ so that
[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-forbid-option "-m64" { target i?86-*-* } } */
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 }