aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.target/arm/pr52686.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.target/arm/pr52686.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.target/arm/pr52686.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.target/arm/pr52686.c b/gcc-4.8.1/gcc/testsuite/gcc.target/arm/pr52686.c
deleted file mode 100644
index 66cbc575e..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.target/arm/pr52686.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* PR target/52375 */
-/* { dg-do compile } */
-/* { dg-require-effective-target arm_neon_ok } */
-/* { dg-options "-march=armv7-a -mfloat-abi=softfp -mfpu=neon -O -ftree-vectorize" } */
-
-unsigned int output[4];
-
-void test (unsigned short *p)
-{
- unsigned int x = *p;
- if (x)
- {
- output[0] = x << 1;
- output[1] = x << 1;
- output[2] = x << 1;
- output[3] = x << 1;
- }
-}
-