diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-09-10 22:14:16 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-09-10 22:14:16 +0000 |
commit | 13d28af8449cfa2269589ffb95b3c1d66e9e888c (patch) | |
tree | 8bbba0b2c608a4b6f6ab18dc9fe2b1c87b4d17fb | |
parent | ca831f14d40e32df191244092c71e47a3b3498b0 (diff) | |
download | external_llvm-13d28af8449cfa2269589ffb95b3c1d66e9e888c.zip external_llvm-13d28af8449cfa2269589ffb95b3c1d66e9e888c.tar.gz external_llvm-13d28af8449cfa2269589ffb95b3c1d66e9e888c.tar.bz2 |
Fix validation errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81466 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ExceptionHandling.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ExceptionHandling.html b/docs/ExceptionHandling.html index 6f5a35c..c57776c 100644 --- a/docs/ExceptionHandling.html +++ b/docs/ExceptionHandling.html @@ -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> |