From: Bill Wendling
Date: Thu, 10 Sep 2009 22:12:50 +0000 (+0000)
Subject: Fix validation errors.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=808b9ce756dacb0c139f8c9931a1078bc42c906f;p=oota-llvm.git
Fix validation errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81465 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/ExceptionHandling.html b/docs/ExceptionHandling.html
index ded9b36f155..6f5a35c6b63 100644
--- a/docs/ExceptionHandling.html
+++ b/docs/ExceptionHandling.html
@@ -295,15 +295,17 @@
__cxa_begin_catch takes a exception structure reference as an
argument and returns the value of the exception object.
- __cxa_end_catch takes no arguments. This function
- Locates the most recently caught exception and decrements its handler
- count.
- Removes the exception from the "caught" stack if the handler count goes
- to zero.
- Destroys the exception if the handler count goes to zero, and the
- exception was not re-thrown by throw.
- Note: a rethrow from within the catch may replace this call with
- a __cxa_rethrow.
+ __cxa_end_catch takes no arguments. This function:
+
+ - Locates the most recently caught exception and decrements its handler
+ count,
+ - Removes the exception from the "caught" stack if the handler count
+ goes to zero, and
+ - Destroys the exception if the handler count goes to zero, and the
+ exception was not re-thrown by throw.
+
+ Note: a rethrow from within the catch may replace this call with
+ a __cxa_rethrow.