// S : tags c todo $TAGS // S : expect --result valid // S : cc -o test.bc $CC_OPT $file // S : verify --sequential -o nofail:malloc $V_OPT test.bc extern void __VERIFIER_error() __attribute__ ((__noreturn__)); extern void __VERIFIER_assert(int); int main(void) { unsigned int x = 0; while (x < 0x0fffffff) { if (x < 0xfff0) { x++; } else { x += 2; } } __VERIFIER_assert(!(x % 2)); }