aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/pr44214-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/pr44214-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/pr44214-1.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr44214-1.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/pr44214-1.c
deleted file mode 100644
index 292ce57c3..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/pr44214-1.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -freciprocal-math -fdump-tree-ccp1" } */
-
-typedef double v2df __attribute__ ((vector_size (16)));
-
-void do_div (v2df *a, v2df *b)
-{
- *a = *b / (v2df) { 2.0, 3.0 };
-}
-
-/* Constant folding should multiply *b by the reciprocals of the
- vector elements. The fold does not take place for generic
- vectors until the first CCP pass. The string " * " occurs 3
- times: one multiply and two indirect parameters. */
-
-/* { dg-final { scan-tree-dump-times " \\\* " 3 "ccp1" } } */
-/* { dg-final { scan-tree-dump-times " / " 0 "ccp1" } } */
-/* { dg-final { cleanup-tree-dump "ccp1" } } */