diff options
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/sse-8.c')
-rw-r--r-- | gcc/testsuite/gcc.target/i386/sse-8.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/i386/sse-8.c b/gcc/testsuite/gcc.target/i386/sse-8.c new file mode 100644 index 00000000000..ec3acc16906 --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/sse-8.c @@ -0,0 +1,15 @@ +/* PR target/14343 */ +/* Origin: <Pawe Sikora <pluto@ds14.agh.edu.pl> */ + +/* The xstormy16 doesn't support V2DI. */ +/* { dg-do compile { xfail xstormy16-*-* } } */ +/* { dg-options "" } */ +/* { dg-options "-march=pentium3" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */ + +int main() +{ + typedef long long int v __attribute__ ((vector_size (16))); + v a, b; + a = b; + return 0; +} |