* gcc.c-torture/compile/990625-2.c: New test.

From-SVN: r27763
This commit is contained in:
Jeffrey A Law 1999-06-25 05:11:56 +00:00 committed by Jeff Law
parent 8d22ad723e
commit 790f04d1ab
2 changed files with 14 additions and 0 deletions

View File

@ -1,5 +1,7 @@
Fri Jun 25 05:28:40 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/990625-2.c: New test.
* gcc.c-torture/compile/990625-1.c: New test.
Thu Jun 17 13:48:16 1999 Jeffrey A Law (law@cygnus.com)

View File

@ -0,0 +1,12 @@
void
broken030599(int *n)
{
int i, x;
for (i = 0; i < 32; i++) {
x=0;
x++;
if (i & 4)
x++;
x++;
}
}