Add new test (that breaks ARM backend).
From-SVN: r34794
This commit is contained in:
parent
18ee3d5edb
commit
671e85f60b
@ -1,3 +1,7 @@
|
||||
2000-06-29 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* gcc.c-torture/compile/20000629-1.c: New test.
|
||||
|
||||
2000-06-29 Zack Weinberg <zack@wolery.cumb.org>
|
||||
|
||||
|
||||
|
16
gcc/testsuite/gcc.c-torture/compile/20000629-1.c
Normal file
16
gcc/testsuite/gcc.c-torture/compile/20000629-1.c
Normal file
@ -0,0 +1,16 @@
|
||||
struct a
|
||||
{
|
||||
struct a * x;
|
||||
};
|
||||
|
||||
void
|
||||
foo (struct a * b)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 1000; i++)
|
||||
{
|
||||
b->x = b;
|
||||
b++;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user