* gcc.c-torture/execute/loop-15.c: New.

From-SVN: r57557
This commit is contained in:
Alan Modra 2002-09-26 23:05:57 +00:00 committed by Alan Modra
parent b5a77fef8c
commit a7215b3224
2 changed files with 44 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-09-27 Alan Modra <amodra@bigpond.net.au>
* gcc.c-torture/execute/loop-15.c: New.
2002-09-26 Janis Johnson <janis187@us.ibm.com>
* README.QMTEST: Fix typo.

View File

@ -0,0 +1,40 @@
/* Bombed with a segfault on powerpc-linux. doloop.c generated wrong
loop count. */
void
foo (unsigned long *start, unsigned long *end)
{
unsigned long *temp = end - 1;
while (end > start)
*end-- = *temp--;
}
int
main (void)
{
unsigned long a[5];
int start, end, k;
for (start = 0; start < 5; start++)
for (end = 0; end < 5; end++)
{
for (k = 0; k < 5; k++)
a[k] = k;
foo (a + start, a + end);
for (k = 0; k <= start; k++)
if (a[k] != k)
abort ();
for (k = start + 1; k <= end; k++)
if (a[k] != k - 1)
abort ();
for (k = end + 1; k < 5; k++)
if (a[k] != k)
abort ();
}
return 0;
}