]>
Commit | Line | Data |
---|---|---|
b1f7435d A |
1 | |
2 | #include "header.h" | |
3 | ||
4 | int uninit; | |
5 | int init = 1; | |
6 | static int custom __asm__(".my_non_standard_name") = 1; | |
7 | static int suninit; | |
8 | static int sinit=0; | |
9 | static int scustominit __asm__(".my_non_standard_name_static") = 1; | |
10 | ||
11 | int bar(int x) | |
12 | { | |
13 | static int bar_uninit; | |
14 | static int bar_init=3; | |
15 | bar_uninit = x; | |
16 | scustominit = x; | |
17 | custom = x; | |
18 | return 20 + suninit + sinit + | |
19 | bar_init + bar_uninit + foo(x); | |
20 | } | |
21 | ||
22 | extern void disappear() __asm__("lbegone"); | |
23 | void disappear() {} | |
24 | ||
25 | extern void foo() __asm__(".my_non_standard_function_name"); | |
26 | void foo() { disappear(); } | |
27 |