aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr38151-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr38151-1.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr38151-1.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr38151-1.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr38151-1.c
deleted file mode 100644
index 6500a5029..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr38151-1.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* { dg-do run } */
-/* { dg-options "-O2" } */
-
-void abort (void);
-
-struct S2848
-{
- unsigned int a;
- _Complex int b;
-};
-
-struct S2848 s2848;
-
-void __attribute__((noinline))
-check2848 (struct S2848 arg0)
-{
- if (arg0.b != s2848.b)
- abort ();
-}
-
-int main()
-{
- s2848.a = 4027477739U;
- s2848.b = (723419448 + -218144346 * __extension__ 1i);
-
- check2848 (s2848);
-
- return 0;
-}