new testcase for PR580

llvm-svn: 22222
This commit is contained in:
Chris Lattner 2005-06-15 22:42:53 +00:00
parent df81539278
commit 0c2be5094c
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// RUN: %llvmgcc -std=c99 %s -S -o - | gccas -o /dev/null
// PR580
int X, Y;
int foo() {
int i;
for (i=0; i<100; i++ )
{
break;
i = ( X || Y ) ;
}
}