]> git.saurik.com Git - apple/ld64.git/blame - unit-tests/test-cases/coalesce-force/foo.c
ld64-409.12.tar.gz
[apple/ld64.git] / unit-tests / test-cases / coalesce-force / foo.c
CommitLineData
f80fe69f
A
1
2
3void foo1() {}
4void foo3() {}
5
6
7__attribute__((weak)) void foo2() {}
8__attribute__((weak)) void foo4() {}
9
10
11void wildcheck() {}
12void willnot() {}
13
14
15
16__attribute__((weak)) void patterncheck() {}
17__attribute__((weak)) void patnot() {}
18
19
20void* pointers[] = { &foo1, &foo2, &foo3, &foo4, &wildcheck, &willnot, &patterncheck, &patnot };
21