1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Stuff needed by cdizy: */
typedef short Guard;

/* External functions, don't include standard libs because cdizy is weird */
extern int atoi (const char *nptr);
extern int printf(const char *format, ...);

/* In order to be able to inspect the result... */
int res, T_res;

void fail(int O_same)
{
  /* Declare guards */
  Guard T_G101 = 1;
  Guard G101 = 1;
  Guard T_G10 = 1;
  Guard G10 = 1;

  /* Declare/initialize tagged params */
  int T_O_same = O_same;

  /* Declare other variables */
  int O_result;
  int O_i;
  int T_O_result;
  int T_O_i;

  /* Here is the body! */
  O_i = 0;
  T_O_i = 0;
  G10 = O_i <= 1;
  T_G10 = T_O_i <= 1;
G10__v__T_G10:
    if (G10) G101 = 1;
    if (T_G10) T_G101 = 1;
    if (G10) if (G101) O_i = (O_i + 1);
    if (T_G10) if (T_G101) T_O_i = (T_O_i + 1);
    if (G10) if (G101) O_same = (O_same + 1);
    if (T_G10) if (T_G101) T_O_same = (T_O_same + 1);
    if (T_G10) if (T_G101) T_G10 = 0;

    if (G10) G10 = O_i <= 1;
    if (T_G10) T_G10 = T_O_i <= 1;
    if (G10) goto G10__v__T_G10;
    if (T_G10) goto G10__v__T_G10;
  O_result = O_same;
  T_O_result = T_O_same;


  /* Correlating point */
  { char *CP0; }

  /* Set the output... */
  res = O_result;
  T_res = T_O_result;
}