remove bogus test

llvm-svn: 36166
This commit is contained in:
Chris Lattner 2007-04-16 21:20:27 +00:00
parent 4acf9e6941
commit e9e469d0ad

View File

@ -1,17 +0,0 @@
// RUN: %llvmgcc -S %s -o - | grep {trunc.*to i8}
// RUN: %llvmgcc -S %s -o - | llvm-as | opt -instcombine | llc -march=x86 | \
// RUN: grep {test.*1}
int
main ( int argc, char** argv)
{
int i;
int result = 1;
for (i = 2; i <= 3; i++)
{
if ((i & 1) == 0)
{
result = result + 17;
}
}
return result;
}