]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/lto-dead_strip-inline-asm/bar.c
ld64-351.8.tar.gz
[apple/ld64.git] / unit-tests / test-cases / lto-dead_strip-inline-asm / bar.c
1
2
3 void qux() {}
4
5 asm("\t.text\n"
6 "\t.globl _foo\n"
7 "_foo:\n"
8 "\tnop\n");
9
10 extern void foo();
11
12 void (*bar())() {
13 return foo;
14 }