[llvm-commits] [llvm] r81466 - /llvm/trunk/docs/ExceptionHandling.html
Bill Wendling
isanbard at gmail.com
Thu Sep 10 15:14:17 PDT 2009
Author: void
Date: Thu Sep 10 17:14:16 2009
New Revision: 81466
URL: http://llvm.org/viewvc/llvm-project?rev=81466&view=rev
Log:
Fix validation errors.
Modified:
llvm/trunk/docs/ExceptionHandling.html
Modified: llvm/trunk/docs/ExceptionHandling.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ExceptionHandling.html?rev=81466&r1=81465&r2=81466&view=diff
==============================================================================
--- llvm/trunk/docs/ExceptionHandling.html (original)
+++ llvm/trunk/docs/ExceptionHandling.html Thu Sep 10 17:14:16 2009
@@ -295,15 +295,15 @@
<li><tt>__cxa_begin_catch</tt> takes a exception structure reference as an
argument and returns the value of the exception object.</li>
- <li><tt>__cxa_end_catch</tt> takes no arguments. This function:
- <p><ol>
+ <li><tt>__cxa_end_catch</tt> takes no arguments. This function:<br><br>
+ <ol>
<li>Locates the most recently caught exception and decrements its handler
count,</li>
<li>Removes the exception from the "caught" stack if the handler count
goes to zero, and</li>
<li>Destroys the exception if the handler count goes to zero, and the
exception was not re-thrown by throw.</li>
- </ol></p>
+ </ol>
<p>Note: a rethrow from within the catch may replace this call with
a <tt>__cxa_rethrow</tt>.</p></li>
</ul>
More information about the llvm-commits
mailing list