int nondet() { int a; return a; } _Bool nondet_bool() { _Bool a; return a; } int foo (int A, int B) { goto loc_f0; loc_f0: { if (nondet_bool()) { if (1 >= 0) { goto loc_f1; } } goto end; } loc_f1: { if (nondet_bool()) { int Y_0 = nondet(); int B_ = 1 + Y_0; int A_ = 1 + Y_0; if (1 >= 0) { A = A_; B = B_; goto loc_f1; } } goto end; } end: return 0; }