mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
67ed710684
Currently, we bind those directives with the last symbol, so if none has been defined, this would lead to a crash of the compiler. <rdar://problem/15939159> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206236 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
410 B
ArmAsm
18 lines
410 B
ArmAsm
# RUN: llvm-mc < %s -triple=armv7-linux-gnueabi -filetype=obj -o - \
|
|
# RUN: | llvm-dwarfdump - | FileCheck %s
|
|
|
|
_proc:
|
|
.cfi_sections .debug_frame
|
|
.cfi_startproc
|
|
bx lr
|
|
.cfi_endproc
|
|
|
|
# CHECK: .debug_frame contents:
|
|
# CHECK: CIE
|
|
# CHECK-NOT: DW_CFA
|
|
# When llvm-dwarfdump prints the full info for the DW_CFA_def_cfa
|
|
# field, we can check that here too.
|
|
# CHECK: DW_CFA_def_cfa:
|
|
# CHECK-NOT: DW_CFA
|
|
# CHECK: FDE
|