aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/cmpdi-1.c
blob: f2e62988b36b6ea0b83dd7a88ff294e2bd2e5fc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
int
f (long long d)
{
  int i = 0;
  if (d == 1)
    i = 1;
  return i;
}

int
g (long long d)
{
  int i = 0;
  if (d <= 0)
    i = 1;
  return i;
}