<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Jan 24, 2011, at 2:38 PM, Anton Korobeynikov wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div>Author: asl<br>Date: Mon Jan 24 16:38:40 2011<br>New Revision: 124150<br><br>URL: <a href="http://llvm.org/viewvc/llvm-project?rev=124150&view=rev">http://llvm.org/viewvc/llvm-project?rev=124150&view=rev</a><br>Log:<br>Support printing exception section into the current one. This is the case when LSDASection is blank<br><br>Modified:<br>    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp<br><br>Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp<br>URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp?rev=124150&r1=124149&r2=124150&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp?rev=124150&r1=124149&r2=124150&view=diff</a><br>==============================================================================<br>--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp (original)<br>+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp Mon Jan 24 16:38:40 2011<br>@@ -451,7 +451,8 @@<br>   }<br><br>   // Begin the exception table.<br>-  Asm->OutStreamer.SwitchSection(LSDASection);<br>+  if (LSDASection)<br>+    Asm->OutStreamer.SwitchSection(LSDASection);<br>   Asm->EmitAlignment(2);<br></div></blockquote></div><br><div>Can you explain this change?</div><div><br></div><div>Thanks.</div><div><br></div><div>-eric</div></body></html>