aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/gcc/testsuite/gcc.target/i386/pr22076.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.7/gcc/testsuite/gcc.target/i386/pr22076.c')
-rw-r--r--gcc-4.7/gcc/testsuite/gcc.target/i386/pr22076.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc-4.7/gcc/testsuite/gcc.target/i386/pr22076.c b/gcc-4.7/gcc/testsuite/gcc.target/i386/pr22076.c
deleted file mode 100644
index c1da4e9aa..000000000
--- a/gcc-4.7/gcc/testsuite/gcc.target/i386/pr22076.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -fomit-frame-pointer -flax-vector-conversions -mmmx" } */
-/* { dg-options "-O2 -fomit-frame-pointer -flax-vector-conversions -mmmx -mno-vect8-ret-in-mem" { target i?86-*-solaris2.[89] *-*-vxworks* } } */
-
-#include <mmintrin.h>
-
-__v8qi test ()
-{
- __v8qi mm0 = {1,2,3,4,5,6,7,8};
- __v8qi mm1 = {11,22,33,44,55,66,77,88};
- volatile __m64 x;
-
- x = _mm_add_pi8 (mm0, mm1);
-
- return x;
-}
-
-/* { dg-final { scan-assembler-times "movq" 3 } } */
-/* { dg-final { scan-assembler-not "movl" { target nonpic } } } */