forked from OSchip/llvm-project
14 lines
584 B
ArmAsm
14 lines
584 B
ArmAsm
## This test checks llvm-dwarfdump emits correct error diagnostics for the
|
|
## unsupported case where DWARF64 flag is present in the debug_macro section header.
|
|
|
|
# RUN: llvm-mc -triple x86_64-unknown-linux -filetype=obj %s -o -| \
|
|
# RUN: not llvm-dwarfdump -debug-macro - /dev/null 2>&1 | FileCheck %s
|
|
|
|
# CHECK:error: DWARF64 is not supported
|
|
|
|
.section .debug_macro,"",@progbits
|
|
.Lcu_macro_begin0:
|
|
.short 5 # Macro information version
|
|
.byte 3 # Flags: 64 bit, debug_line_offset present
|
|
.quad 0 # debug_line_offset
|