aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/cast-to-bool.c
blob: e0f48daa731dd2354bd478b93d8a3ebc1e8cebdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %llvmgcc -S %s -o - | grep 'trunc.*to bool'
// RUN: %llvmgcc -S %s -o - | llvm-as | 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;
}