aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/dbl_parm.c
blob: b82d4e5c4c37774c292402dc220a74c695b2e9ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-additional-options "-std=gnu89" } */

foo (a, b, c)
     double a;
     int b;
     double c;
{
  if (b)
    return a + c;
  else
    return a - c;
}