mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
2b6009cd7d
D81469 introduced a check to error on CIE version different than 1 for eh_frame, but older compilers mistakenly create binaries with this version set to 3 for DWARF4 or 4 to DWARF5. Move the check to dump time instead of eh_frame parse time, so we can be tolerant with older binaries. Reviewed By: aprantl Differential Revision: https://reviews.llvm.org/D97830
14 lines
372 B
ArmAsm
14 lines
372 B
ArmAsm
## Check we do not support .eh_frame sections of version 0.
|
|
|
|
# RUN: llvm-mc -triple x86_64-unknown-linux %s -filetype=obj -o %t
|
|
# RUN: llvm-dwarfdump -debug-frame %t 2>&1 | FileCheck %s
|
|
|
|
# CHECK: unsupported CIE version
|
|
|
|
.section .eh_frame,"a",@unwind
|
|
.long .Lend - .LCIEptr ## Length
|
|
.LCIEptr:
|
|
.long 0x00000000 ## CIE ID
|
|
.byte 0 ## Version
|
|
.Lend:
|