OSDN Git Service

Fix validation errors.
authorBill Wendling <isanbard@gmail.com>
Thu, 10 Sep 2009 22:14:16 +0000 (22:14 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 10 Sep 2009 22:14:16 +0000 (22:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81466 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ExceptionHandling.html

index 6f5a35c..c57776c 100644 (file)
   <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>