]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/symbol-move-and-section-rename/main.c
9b080ab5e94d9a1fac52511e1d56bd2930f16c87
[apple/ld64.git] / unit-tests / test-cases / symbol-move-and-section-rename / main.c
1
2 void mm()
3 {
4 }
5
6 void s1() {
7 mm();
8 }
9
10 void s2() {
11 mm();
12 }
13
14 int main()
15 {
16 s1();
17 s2();
18 return 0;
19 }
20
21
22 int abc = 10;
23 int def = 20;
24 int ghi = 30;
25
26 int com1;
27 int com2;
28 int com3;
29 int com4;
30