]> git.saurik.com Git - apple/ld64.git/blob - ld64-134.9/unit-tests/test-cases/eh-coalescing-no-labels/bar.c
ld64-134.9.tar.gz
[apple/ld64.git] / ld64-134.9 / unit-tests / test-cases / eh-coalescing-no-labels / bar.c
1
2 extern void other();
3
4 void bar() {
5 other();
6 other();
7 }
8
9 void __attribute__((weak)) my_weak() {
10 other();
11 other();
12 }
13
14 void bar2() {
15 other();
16 other();
17 }
18