[PATCH] D80476: [DebugInfo/llvm-objdump] - Print "ZERO terminator" for terminator entries when dumping .eh_frame.
James Henderson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 27 01:35:15 PDT 2020
jhenderson added inline comments.
================
Comment at: llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp:307
void CIE::dump(raw_ostream &OS, const MCRegisterInfo *MRI, bool IsEH) const {
+ // A CIE with a zero length is a terminator entry in the .eh_frame sextion.
+ if (IsEH && Length == 0) {
----------------
MaskRay wrote:
> typo: section
Looks like this typo was never fixed?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80476/new/
https://reviews.llvm.org/D80476
More information about the llvm-commits
mailing list