extern int __VERIFIER_nondet_int(void); int foo(int x,int y,int oldx){ while (4*x - 5*y > 0) { oldx = x; x = 2*oldx + 4*y; y = 4*oldx; } return 0; }