aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/rmsc.c
blob: 5c97c6dae140fdd7cbd6d350b23bb9d4d9238c17 (plain)
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

cc1 (x, y)
     int x, y;
{
  int z;
  z = x - y;
  if (x >= y)
    return z + 1;
  else
    return z + 0;
}

cc2 (x, y)
     int x, y;
{
  int z;

  z = x - y;
  if (z >= 0)
    return z + 1;
  else
    return z + 0;
}

cc3 (x, y)
     unsigned x, y;
{
  unsigned z;
  z = x - y;
  if (x >= y)
    return z + 1;
  else
    return z + 0;
}

cc4 (x, y)
     unsigned x, y;
{
  unsigned z;

  z = x - y;
  if (z >= 0)
    return z + 1;
  else
    return z + 0;
}