extern int __VERIFIER_nondet_int(void); int foo(int i){ while (i >= -5 && i <= 5) { if (i > 0) { i = i-1; } if (i < 0) { i = i+1; } } return 0; }