]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/lto-dead_strip-coalesce/foo.c
ld64-127.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-dead_strip-coalesce / foo.c
1
2 #include <string.h>
3 #include <CoreFoundation/CoreFoundation.h>
4
5 void foo1()
6 {
7 CFStringGetLength(CFSTR("test1"));
8 strlen("str1");
9 }
10
11 void foo2()
12 {
13 CFStringGetLength(CFSTR("test2"));
14 strlen("str2");
15 }
16
17 void foo3()
18 {
19 CFStringGetLength(CFSTR("test3"));
20 strlen("str3");
21 }