int nondet() { int a; return a; } _Bool nondet_bool() { _Bool a; return a; } int foo (int A) { goto loc_start; loc_eval: { if (nondet_bool()) { int Y_0 = nondet(); int Y_1 = nondet(); int A_ = -1 + 2 * Y_0; if (A == 2 * Y_0 && 2 * Y_0 >= 1 && 1 + 2 * Y_1 >= 2 * Y_0 && 2 * Y_0 >= 2 * Y_1) { A = A_; goto loc_eval; } } goto end; } loc_start: { if (nondet_bool()) { if (1 >= 0) { goto loc_eval; } } goto end; } end: return 0; }