Sign in
gnu
/
gcc.git
/
94edbc153ae4f1c1532859836e528fc480da82d6
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
dbl_parm.c
blob: b82d4e5c4c37774c292402dc220a74c695b2e9ed [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
foo
(
a
,
b
,
c
)
double
a
;
int
b
;
double
c
;
{
if
(
b
)
return
a
+
c
;
else
return
a
-
c
;
}