param_key: fix container of when no struct member is referenced
[smatch.git] / validation / sm_compare18.c
blobccade32a7dffbb7e73070515e343ba5ea8c34e7a
1 #include "check_debug.h"
3 int a, b;
4 static int options_write(void)
6 if (a == b)
7 return;
9 if (a < 10)
10 return;
11 if (b > 10)
12 return;
13 __smatch_compare(a, b);
18 * check-name: smatch compare #18
19 * check-command: smatch -I.. sm_compare18.c
21 * check-output-start
22 sm_compare18.c:13 options_write() a > b
23 * check-output-end