* gcc.c-torture/compile/991229-3.c: New test.

From-SVN: r31135
This commit is contained in:
Jeffrey A Law 1999-12-30 06:54:04 +00:00 committed by Jeff Law
parent 7f0f889158
commit 60a18af89e
2 changed files with 18 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Wed Dec 29 23:48:49 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/991229-3.c: New test.
* gcc.c-torture/compile/991229-2.c: New test.
* gcc.c-torture/compile/991229-1.c: New test.

View File

@ -0,0 +1,17 @@
int m[8],b[8];
int main(){
int i;
for(;;){
m[0] = rand();
if(m[0] == 0){
for(i=0;i<8;i++){
m[i] = b[i];
}
break;
}
}
}