Commit 930352c0 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

re PR target/23424 (cris.md rtl canonicalization bug)

	PR target/23424
	* gcc.dg/torture/pr23424-1.c: New test.

From-SVN: r106507
parent 5fa3b496
2005-11-04 Hans-Peter Nilsson <hp@axis.com>
PR target/23424
* gcc.dg/torture/pr23424-1.c: New test.
2005-11-04 Richard Henderson <rth@redhat.com> 2005-11-04 Richard Henderson <rth@redhat.com>
* gcc.target/i386/20000609-1.c, gcc.target/i386/20000614-1.c, * gcc.target/i386/20000609-1.c, gcc.target/i386/20000614-1.c,
/* { dg-do compile } */
extern char *x;
extern void foo (void);
void f (char *s, char *se, char *mp, char *y)
{
while (s != se)
{
char *p;
foo ();
p = s + *mp;
*y++ = *p;
s = p;
}
x = s;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment