Sign in
chromium
/
chromiumos
/
third_party
/
binutils
/
refs/heads/stabilize-7647.32.B
/
.
/
ld
/
testsuite
/
ld-plugin
/
lto-8b.c
blob: 3b6db5fbe4970d28f3904b322f1a014b11cbb763 [
file
] [
log
] [
blame
] [
edit
]
extern
int
bar
(
void
)
__attribute__
((
__visibility__
(
"hidden"
),
__const__
));
extern
void
baz
(
int
);
void
foo
(
char
c
)
{
int
i
;
if
(
bar
())
i
=
c
;
else
i
=
c
;
baz
(
i
);
}