Failing builds because a private class member is not being used after
authorEli Bendersky <eliben@google.com>
Wed, 6 Feb 2013 05:37:46 +0000 (05:37 +0000)
committerEli Bendersky <eliben@google.com>
Wed, 6 Feb 2013 05:37:46 +0000 (05:37 +0000)
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

index ec557169e3e639417891a7a46a4b463ea65f8f76..974cecc3868ffe617e75c52d94cc81134544586b 100644 (file)
@@ -104,6 +104,9 @@ public:
                  LinkedCIEOffset, InitialLocation,
                  InitialLocation + AddressRange);
     OS << "\n";
+    if (LinkedCIE) {
+      OS << format("%p\n", LinkedCIE);
+    }
   }
 
   static bool classof(const FrameEntry *FE) {