From: Eli Bendersky Date: Wed, 6 Feb 2013 05:37:46 +0000 (+0000) Subject: Failing builds because a private class member is not being used after X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b2ac7c09b17efadea2a9f90f45801d9d2ee687aa;p=oota-llvm.git 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 --- 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) {