This commit was manufactured by cvs2svn to create branch

'gcc-3_1-branch'.

From-SVN: r52418
This commit is contained in:
No Author 2002-04-17 13:51:30 +00:00
parent 13d8b67ef2
commit bc073455c0
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
/* PR target/6303
This testcase ICEd because s390 did not define
ASM_SIMPLIFY_DWARF_ADDR hook. */
/* { dg-do compile } */
/* { dg-options "-O2 -fpic -g" } */
static inline char *
bar (unsigned long x, char *y)
{
extern const char ext[];
const char *a = ext;
char *b = y;
do *--b = a[x % 10]; while ((x /= 10) != 0);
return b;
}
struct A { char *p, *q; };
struct B { int r, s; };
int
foo (struct A *a, const struct B *b)
{
char c[(b->r > b->s) ? b->r : b->s];
char *d = &c[sizeof c];
register char *e;
e = bar (b->r, d);
while (e < d)
{
register const int f = *e++;
if (((a->p >= a->q) ? 1 : (unsigned char) (*a->p++ = f)) == -1)
break;
}
}