mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
355e088da3
llvm-svn: 33464
17 lines
321 B
C
17 lines
321 B
C
// RUN: %llvmgcc -S %s -o - | grep 'trunc.*to bool'
|
|
// RUN: %llvmgcc -S %s -o - | llvm-as | opt -instcombine | llc -march=x86 | 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;
|
|
}
|