Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / Inputs / libgoodbye.s
blob40c829cfc6e228bb562e8ba6228d6b5c8f89d3c9
1 .section __TEXT,__cstring
2 .globl _goodbye_world, _print_goodbye
4 _goodbye_world:
5 .asciz "Goodbye world!\n"
7 .text
8 _print_goodbye:
9 movl $0x2000004, %eax # write() syscall
10 mov $1, %rdi # stdout
11 leaq _goodbye_world(%rip), %rsi
12 mov $15, %rdx # length of str
13 syscall
14 ret