unreachable code: don't warn about empty statements
[smatch.git] / validation / sm_compare10.c
blob410e16cd787f18f671648d9f25eb75f0c9125fe8
1 #include "check_debug.h"
3 int a, b, c;
4 static int options_write(void)
6 if (c <= b)
7 return;
8 if (a >= b)
9 return;
10 __smatch_compare(a, c);
14 * check-name: smatch compare #10
15 * check-command: smatch -I.. sm_compare10.c
17 * check-output-start
18 sm_compare10.c:10 options_write() a < c
19 * check-output-end