<div dir="ltr">On Tue, Feb 5, 2013 at 9:37 PM, Eli Bendersky <span dir="ltr"><<a href="mailto:eliben@google.com" target="_blank" class="cremed">eliben@google.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: eliben<br>
Date: Tue Feb  5 23:37:46 2013<br>
New Revision: 174485<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=174485&view=rev" target="_blank" class="cremed">http://llvm.org/viewvc/llvm-project?rev=174485&view=rev</a><br>
Log:<br>
Failing builds because a private class member is not being used after<br>
initialization is one of the reasons I consider -werror to be shoddy.<br></blockquote><div><br></div><div style>This log doesn't really explain the change you made... Did the warning actually find that your commit didn't include intended code? Just trying to understand a bit better.</div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Modified:<br>
    llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp<br>
<br>
Modified: llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp?rev=174485&r1=174484&r2=174485&view=diff" target="_blank" class="cremed">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp?rev=174485&r1=174484&r2=174485&view=diff</a><br>

==============================================================================<br>
--- llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp (original)<br>
+++ llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp Tue Feb  5 23:37:46 2013<br>
@@ -104,6 +104,9 @@ public:<br>
                  LinkedCIEOffset, InitialLocation,<br>
                  InitialLocation + AddressRange);<br>
     OS << "\n";<br>
+    if (LinkedCIE) {<br>
+      OS << format("%p\n", LinkedCIE);<br>
+    }<br>
   }<br>
<br>
   static bool classof(const FrameEntry *FE) {<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@cs.uiuc.edu" class="cremed">llvm-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank" class="cremed">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div></div>