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 A_ = 2 * Y_0; if (A == 1 + 2 * Y_0 && 2 * Y_0 >= 0) { A = A_; goto loc_eval; } } goto end; } loc_start: { if (nondet_bool()) { if (1 >= 0) { goto loc_eval; } } goto end; } end: return 0; }