21 lines
761 B
ArmAsm
21 lines
761 B
ArmAsm
# REQUIRES: asserts
|
|
# RUN: llvm-mc -triple=riscv64 -filetype=obj -o %t %s
|
|
# RUN: llvm-jitlink -debug-only=jitlink -noexec %t 2>&1 | FileCheck %s
|
|
#
|
|
# Because of the exist of cfi directive, sections like eh_frame section will be emitted
|
|
# in llvm's object code emission phase. Anonymous symbols will also be emitted to indicate
|
|
# the section start and section end. So that by relocating these symbol, the section length
|
|
# can be calculated.
|
|
#
|
|
# CHECK: Creating defined graph symbol for ELF symbol ""
|
|
# CHECK: Creating defined graph symbol for ELF symbol "main"
|
|
.text
|
|
.globl main
|
|
.p2align 2
|
|
.type main,@function
|
|
main:
|
|
.cfi_startproc
|
|
ret
|
|
.Lfunc_end0:
|
|
.size main, .Lfunc_end0-main
|
|
.cfi_endproc
|