aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr40906-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr40906-1.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr40906-1.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr40906-1.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr40906-1.c
deleted file mode 100644
index 233d8fdcb..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr40906-1.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* { dg-do run } */
-/* { dg-require-effective-target ia32 } */
-/* { dg-options "-O2 -fomit-frame-pointer -fno-asynchronous-unwind-tables -mpush-args -mno-accumulate-outgoing-args" } */
-/* { dg-options "-O2 -fomit-frame-pointer -fno-asynchronous-unwind-tables -mpush-args" { target *-*-mingw* *-*-cygwin* } } */
-
-void abort (void);
-
-void __attribute__((noinline))
-f (long double a)
-{
- if (a != 1.23L)
- abort ();
-}
-
-int __attribute__((noinline))
-g (long double b)
-{
- f (b);
- return 0;
-}
-
-int
-main (void)
-{
- g (1.23L);
- return 0;
-}