Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20000120-2.c
blob: 939c52de318913247c9977bb2d4eb56d4f965023 [
file
] [
log
] [
blame
]
/* { dg-options "-fgnu89-inline" } */
extern
__inline__
int
odd
(
int
i
)
{
return
i
&
0x1
;
}
int
foo
(
int
i
,
int
j
)
{
return
odd
(
i
+
j
);
}
int
odd
(
int
i
)
{
return
i
&
0x1
;
}