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.

llvm-svn: 174485

llvm/lib/DebugInfo/DWARFDebugFrame.cpp

index ec55716..974cecc 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) {