Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
gcc.dg
/
lto
/
pr102059-1_1.c
blob: 7e31fc7fbd9491f6f3c541d0751b10ecc404c2ef [
file
]
extern
int
foo1
(
int
*
b
);
int
__attribute__
((
always_inline
))
foo2
(
int
*
b
)
{
int
res
=
foo1
(
b
);
*
b
+=
res
;
return
*
b
;
}