sparse, llvm: Reorganize code generation tests
[smatch.git] / validation / backend / logical-ops.c
blob1a0e92441e611995a90a4be25e7013b87da940b3
1 #if 0
2 static int and_bool(int x, int y)
4 return x && y;
7 static unsigned int uand_bool(unsigned int x, unsigned int y)
9 return x && y;
12 static int or_bool(int x, int y)
14 return x || y;
17 static unsigned int uor_bool(unsigned int x, unsigned int y)
19 return x || y;
21 #endif
24 * check-name: Logical operator code generation
25 * check-command: ./sparsec -c $file -o tmp.o