llvm-project/lld/test/MachO/Inputs/libfunction.s
Kellie Medlin 6cb073133c [lld] Merge Mach-O input sections
Summary: Similar to other formats, input sections in the MachO
implementation are now grouped under output sections. This is primarily
a refactor, although there's some new logic (like resolving the output
section's flags based on its inputs).

Differential Revision: https://reviews.llvm.org/D77893
2020-05-01 16:57:18 -07:00

7 lines
83 B
ArmAsm

.section __TEXT,__text
.globl _some_function
_some_function:
mov $1, %rax
ret