summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-09-10 22:12:50 +0000
committerBill Wendling <isanbard@gmail.com>2009-09-10 22:12:50 +0000
commit808b9ce756dacb0c139f8c9931a1078bc42c906f (patch)
tree8eb7d91edf18f89e048b6c7993a6c07c39caa40b /docs
parent92ad363f58681df785933a75a9b9955f13885e7d (diff)
downloadllvm-808b9ce756dacb0c139f8c9931a1078bc42c906f.tar.gz
llvm-808b9ce756dacb0c139f8c9931a1078bc42c906f.tar.bz2
llvm-808b9ce756dacb0c139f8c9931a1078bc42c906f.tar.xz
Fix validation errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ExceptionHandling.html20
1 files changed, 11 insertions, 9 deletions
diff --git a/docs/ExceptionHandling.html b/docs/ExceptionHandling.html
index ded9b36f15..6f5a35c6b6 100644
--- a/docs/ExceptionHandling.html
+++ b/docs/ExceptionHandling.html
@@ -295,15 +295,17 @@
<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
- <ul>Locates the most recently caught exception and decrements its handler
- count.</ul>
- <ul>Removes the exception from the "caught" stack if the handler count goes
- to zero.</ul>
- <ul>Destroys the exception if the handler count goes to zero, and the
- exception was not re-thrown by throw.</ul>
- Note: a rethrow from within the catch may replace this call with
- a <tt>__cxa_rethrow</tt>.</li>
+ <li><tt>__cxa_end_catch</tt> takes no arguments. This function:
+ <p><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>
+ <p>Note: a rethrow from within the catch may replace this call with
+ a <tt>__cxa_rethrow</tt>.</p></li>
</ul>
</div>