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 | 4e6d811eef5b7f07ac8a416b3a6b0b9884155743 (patch) | |
tree | 99769ab2c7c641c70c951441f05847e315cdb3cf /llvm/lib/DebugInfo/DWARFDebugFrame.cpp | |
parent | c4446856e366974dac444bd79ac657fbdbb2ef1c (diff) | |
download | bcm5719-llvm-4e6d811eef5b7f07ac8a416b3a6b0b9884155743.tar.gz bcm5719-llvm-4e6d811eef5b7f07ac8a416b3a6b0b9884155743.zip |
Failing builds because a private class member is not being used after
initialization is one of the reasons I consider -werror to be shoddy.
llvm-svn: 174485
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugFrame.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugFrame.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugFrame.cpp b/llvm/lib/DebugInfo/DWARFDebugFrame.cpp index ec557169e3e..974cecc3868 100644 --- a/llvm/lib/DebugInfo/DWARFDebugFrame.cpp +++ b/llvm/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) { |