From b2ac7c09b17efadea2a9f90f45801d9d2ee687aa Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Wed, 6 Feb 2013 05:37:46 +0000 Subject: [PATCH] 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 --- lib/DebugInfo/DWARFDebugFrame.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/DebugInfo/DWARFDebugFrame.cpp b/lib/DebugInfo/DWARFDebugFrame.cpp index ec557169e3e..974cecc3868 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) {