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