mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
16 lines
202 B
C
16 lines
202 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void foo (void) __attribute__ ((noinline, visibility ("hidden")));
|
||
|
|
||
|
void foo (void) {
|
||
|
printf("foo called.\n");
|
||
|
}
|
||
|
|
||
|
void bar(void);
|
||
|
|
||
|
int main(void) {
|
||
|
foo();
|
||
|
bar();
|
||
|
return 0;
|
||
|
}
|