int nondet() { int a; return a; } _Bool nondet_bool() { _Bool a; return a; } int foo (int A, int B, int C, int D, int E, int F, int G, int H, int I, int J) { goto loc_f1; loc_f1: { if (nondet_bool()) { int J_ = nondet(); int I_ = nondet(); int H_ = nondet(); int G_ = nondet(); int F_ = nondet(); if (1 >= 0) { F = F_; G = G_; H = H_; I = I_; J = J_; goto loc_f2; } } goto end; } loc_f2: { if (nondet_bool()) { int D_ = nondet(); int C_ = nondet(); int B_ = nondet(); if (0 >= A) { B = B_; C = C_; D = D_; goto loc_f300; } } if (nondet_bool()) { int E_ = nondet(); int C_ = nondet(); int B_ = nondet(); if (A >= 1) { B = B_; C = C_; E = E_; goto loc_f2; } } goto end; } loc_f300: end: return 0; }