int nondet() { int a; return a; } _Bool nondet_bool() { _Bool a; return a; } int foo (int A, int B, int C, int D) { goto loc_sqrt; loc_f: { if (nondet_bool()) { int C_ = 2 + C + B; int B_ = 2 + B; int A_ = 1 + A; if (B >= 0 && D >= C) { A = A_; B = B_; C = C_; goto loc_f; } } if (nondet_bool()) { if (C >= 1 + D) { goto loc_end; } } goto end; } loc_sqrt: { if (nondet_bool()) { int C_ = 1; int B_ = 1; int A_ = 0; if (1 >= 0) { A = A_; B = B_; C = C_; goto loc_f; } } goto end; } loc_end: end: return 0; }