[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lld / test / MachO / Inputs / libhello.s
blob0b9930bafcb1c3caaf9fd64ce67dfd126867a6fa
1 .section __TEXT,__cstring
2 .globl _hello_world, _hello_its_me, _print_hello
4 _hello_world:
5 .asciz "Hello world!\n"
7 _hello_its_me:
8 .asciz "Hello, it's me\n"
10 .text
11 _print_hello:
12 movl $0x2000004, %eax # write() syscall
13 mov $1, %rdi # stdout
14 leaq _hello_world(%rip), %rsi
15 mov $13, %rdx # length of str
16 syscall
17 ret