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