aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/pr99786.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/arm/pr99786.c')
-rw-r--r--gcc/testsuite/gcc.target/arm/pr99786.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/gcc/testsuite/gcc.target/arm/pr99786.c b/gcc/testsuite/gcc.target/arm/pr99786.c
deleted file mode 100644
index 11d86f0..0000000
--- a/gcc/testsuite/gcc.target/arm/pr99786.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* { dg-do compile } */
-/* { dg-skip-if "Test is specific to the iWMMXt" { arm*-*-* } { "-mcpu=*" } { "-mcpu=iwmmxt" } } */
-/* { dg-skip-if "Test is specific to the iWMMXt" { arm*-*-* } { "-mabi=*" } { "-mabi=iwmmxt" } } */
-/* { dg-skip-if "Test is specific to the iWMMXt" { arm*-*-* } { "-march=*" } { "-march=iwmmxt" } } */
-/* { dg-skip-if "Test is specific to ARM mode" { arm*-*-* } { "-mthumb" } { "" } } */
-/* { dg-require-effective-target arm32 } */
-/* { dg-require-effective-target arm_iwmmxt_ok } */
-/* { dg-options "-O3 -mcpu=iwmmxt" } */
-
-typedef signed char V __attribute__((vector_size (8)));
-
-void
-foo (V *a)
-{
- *a = *a * 3;
-}
-
-typedef signed short Vshort __attribute__((vector_size (8)));
-void
-foo_short (Vshort *a)
-{
- *a = *a * 3;
-}
-
-typedef signed int Vint __attribute__((vector_size (8)));
-void
-foo_int (Vint *a)
-{
- *a = *a * 3;
-}