mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
15 lines
182 B
C
15 lines
182 B
C
|
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);
|
||
|
}
|