aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr30120.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr30120.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr30120.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr30120.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr30120.c
deleted file mode 100644
index 22fd843a7..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr30120.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* { dg-do run } */
-/* { dg-options "-O2 -ffast-math" } */
-
-extern void abort (void);
-
-static void
-foo (double a, double weight, const double *ring, double *phase)
-{
- *phase = *ring * weight;
-}
-
-void
-foo2 (void)
-{
- foo (0, 1, (double *) 0, (double *) 0);
-}
-
-int
-main (void)
-{
- double t1 = 1, c1;
- foo (0, 1, &t1, &c1);
- if (c1 < 0.5)
- abort();
-
- return 0;
-}