aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.target/i386/pr39082-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.target/i386/pr39082-1.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.target/i386/pr39082-1.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.target/i386/pr39082-1.c b/gcc-4.8.1/gcc/testsuite/gcc.target/i386/pr39082-1.c
deleted file mode 100644
index 36d566dc1..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.target/i386/pr39082-1.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/* PR target/39082 */
-/* { dg-do compile { target { ! { ia32 } } } } */
-/* { dg-options "-O2" } */
-/* { dg-additional-options "-mabi=sysv" { target x86_64-*-mingw* } } */
-
-union un
-{
- long double x;
- int i;
-};
-
-extern int bar1 (union un);
-extern union un bar2 (int);
-
-int
-foo1 (union un u) /* { dg-message "note: the ABI of passing union with long double has changed in GCC 4.4" } */
-{
- bar1 (u);
- return u.i;
-}
-
-int
-foo2 (void)
-{
- union un u;
- u.i = 1;
- return foo1 (u) + bar1 (u);
-}
-
-int
-foo3 (int x)
-{
- union un u = bar2 (x);
- return u.i;
-}