Files
clang-p2996/lld/test/ELF/Inputs/x86-64-split-stack-main.s
Fangrui Song 5bd38a2826 [ELF] Fix split-stack caller with hidden non-split-stack callee
Fix a regression after aabe901d57 (`[ELF] Remove
one redundant computeBinding`): isLocal() does not indicate that the symbol is
originally local. For simplicity, just drop this optimization.
2022-01-19 12:25:01 -08:00

24 lines
458 B
ArmAsm

.text
.global non_split
.type non_split,@function
non_split:
retq
.size non_split,. - non_split
.global non_split_hidden
.hidden non_split_hidden
.type non_split_hidden,@function
non_split_hidden:
retq
.size non_split_hidden,. - non_split_hidden
.global non_function_text_symbol
non_function_text_symbol:
.byte 0x01
.type non_function_text_symbol,@STT_OBJECT
.size non_function_text_symbol, 1
.section .note.GNU-stack,"",@progbits