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 ec55716..974cecc 100644
--- a/lib/DebugInfo/DWARFDebugFrame.cpp
+++ b/lib/DebugInfo/DWARFDebugFrame.cpp
@@ -104,6 +104,9 @@
LinkedCIEOffset, InitialLocation,
InitialLocation + AddressRange);
OS << "\n";
+ if (LinkedCIE) {
+ OS << format("%p\n", LinkedCIE);
+ }
}
static bool classof(const FrameEntry *FE) {