aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/pr56903.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/pr56903.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/pr56903.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr56903.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/pr56903.c
deleted file mode 100644
index 9e6a1c391..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/pr56903.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* PR rtl-optimization/56903 */
-/* { dg-do compile } */
-/* { dg-options "-Os" } */
-/* { dg-additional-options "-march=pentium3" { target ia32 } } */
-
-int a, *b, c;
-struct S { int s : 1; } *fn1 (void);
-extern int fn3 (void), fn4 (int *);
-
-void
-fn2 (void)
-{
- int e = fn3 ();
- char f = c + fn1 ()->s * 4;
- if (*b && f == e)
- a = *b;
- fn4 (b);
-}