sparse, llvm: Reorganize code generation tests
[smatch.git] / validation / backend / cmp-ops.c
blob5a89bee79fd83da2a45efa05722c6b32333539bc
1 static int sete(int x, int y)
3 return x == y;
6 static int setne(int x, int y)
8 return x != y;
11 static int setl(int x, int y)
13 return x < y;
16 static int setg(int x, int y)
18 return x > y;
22 * check-name: Comparison operator code generation
23 * check-command: ./sparsec -c $file -o tmp.o