From: No Author Date: Sat, 13 Mar 2004 11:26:34 +0000 (+0000) Subject: This commit was manufactured by cvs2svn to create branch X-Git-Tag: releases/gcc-3.3.4~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2676c47ab94481be89fb836b583e891f7e764514;p=thirdparty%2Fgcc.git This commit was manufactured by cvs2svn to create branch 'gcc-3_3-branch'. From-SVN: r79443 --- diff --git a/gcc/testsuite/gcc.dg/20040311-2.c b/gcc/testsuite/gcc.dg/20040311-2.c new file mode 100644 index 000000000000..0d0d5da32592 --- /dev/null +++ b/gcc/testsuite/gcc.dg/20040311-2.c @@ -0,0 +1,36 @@ +/* PR target/14533 */ +/* { dg-do compile } */ +/* { dg-options "-O2 -fpic" } */ + +void bar (char *, int); + +extern char b[]; +extern int d, e; +struct S +{ + struct S *m; + int n; +} **g; + +void +foo (int x, char *y) +{ + struct S *h; + int k = 1, l; + +again: + for (h = *g; h != (struct S *) g; h = h->m) + { + if (k == 0 && h->n & 0x100000); + l = y - b; + if (e) + bar (b, l); + if (d) + bar (b, l); + } + if (k) + { + k = 0; + goto again; + } +}