math: remove the get_implied_value_low_overhead() function
[smatch.git] / validation / sm_compare17.c
blob41f8ec657081196244a2ebfb65ad004e0722eab6
1 #include "check_debug.h"
3 int frob();
5 int xxx;
6 static int options_write(void)
8 int a = -1;
9 int found = 0;
11 if (xxx < 0)
12 return;
13 while (frob()) {
14 if (++a == xxx) {
15 found = 1;
16 break;
19 if (!found)
20 __smatch_compare(a, xxx);
24 * check-name: smatch compare #17
25 * check-command: smatch -I.. sm_compare17.c
27 * check-output-start
28 sm_compare17.c:20 options_write() a < xxx
29 * check-output-end