/* TAGS: c sym */ /* VERIFY_OPTS: --symbolic --sequential -o nofail:malloc */ /* CC_OPTS: */ // V: v.10 CC_OPT: -DSIZE=10 TAGS: big // V: v.100 CC_OPT: -DSIZE=100 TAGS: big // V: v.1000 CC_OPT: -DSIZE=1000 TAGS: big // V: v.10000 CC_OPT: -DSIZE=10000 TAGS: big // V: v.100000 CC_OPT: -DSIZE=100000 TAGS: big extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int cond) { if(!(cond)) { ERROR: __VERIFIER_error(); } } extern short __VERIFIER_nondet_short(void); int main() { int a[SIZE]; int b[SIZE]; int k; int i; for (i = 0; i