diff options
author | Eli Bendersky <eliben@google.com> | 2013-02-06 05:37:46 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-02-06 05:37:46 +0000 |
commit | b2ac7c09b17efadea2a9f90f45801d9d2ee687aa (patch) | |
tree | 90f57d9f66c431dfaa3e9353f34dd52ad3c487ab /lib/DebugInfo | |
parent | a859afa859cdd6eaca0ad911fdebe5b0b32581d5 (diff) |
Failing builds because a private class member is not being used after
initialization is one of the reasons I consider -werror to be shoddy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r-- | lib/DebugInfo/DWARFDebugFrame.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/DebugInfo/DWARFDebugFrame.cpp b/lib/DebugInfo/DWARFDebugFrame.cpp index ec557169e3..974cecc386 100644 --- a/lib/DebugInfo/DWARFDebugFrame.cpp +++ b/lib/DebugInfo/DWARFDebugFrame.cpp @@ -104,6 +104,9 @@ public: LinkedCIEOffset, InitialLocation, InitialLocation + AddressRange); OS << "\n"; + if (LinkedCIE) { + OS << format("%p\n", LinkedCIE); + } } static bool classof(const FrameEntry *FE) { |