/* TAGS: c sym */ /* VERIFY_OPTS: --symbolic --sequential -o nofail:malloc */ /* CC_OPTS: -O2 */ // we cheat and let clang figure this one out extern void __VERIFIER_error() __attribute__ ((__noreturn__)); extern void __VERIFIER_assert(int); int main(void) { unsigned int x; while (x < 0x0fffffff) { x++; } __VERIFIER_assert(x >= 0x0fffffff); }