aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/rmsc.c
blob: 2d98cd497b483d5a477c153ca8e14d02a7c515ff (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
47
/* { dg-additional-options "-std=gnu89" } */

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;
}