aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/b88.c
blob: 9d92b20badb0a4ab0f6000da78313e88281a8340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int
foo (double d)
{
  d = -d;
  if (d < 0.0)
    return 1;
  return 2;
}

int
main (void)
{
  foo (0.0);
}