[llvm-commits] CVS: llvm/docs/ExceptionHandling.html

Duncan Sands baldrick at free.fr
Mon Apr 16 06:02:48 PDT 2007



Changes in directory llvm/docs:

ExceptionHandling.html updated: 1.3 -> 1.4
---
Log message:

Fix typos.


---
Diffs of the changes:  (+4 -4)

 ExceptionHandling.html |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/docs/ExceptionHandling.html
diff -u llvm/docs/ExceptionHandling.html:1.3 llvm/docs/ExceptionHandling.html:1.4
--- llvm/docs/ExceptionHandling.html:1.3	Sat Apr 14 07:30:27 2007
+++ llvm/docs/ExceptionHandling.html	Mon Apr 16 08:02:27 2007
@@ -121,8 +121,8 @@
 <i>personalities.</i> An exception handling personality is defined by way of a
 <i>personality function</i> (ex. for C++ <tt>__gxx_personality_v0</tt>) which
 receives the context of the exception, an <i>exception structure</i> containing
-the exception object type and value, and a reference the exception table for the
-current function.  The personality function for the current compile unit is
+the exception object type and value, and a reference to the exception table for
+the current function.  The personality function for the current compile unit is
 specified in a <i>common exception frame</i>.</p>
 
 <p>The organization of an exception table is language dependent.  For C++, an
@@ -195,7 +195,7 @@
 
 <p>The term used to define a the place where an invoke continues after an
 exception is called a <i>landing pad</i>.  LLVM landing pads are conceptually
-alternative entry points into where a exception structure reference and a type
+alternative function entry points where a exception structure reference and a type
 info index are passed in as arguments.  The landing pad saves the exception
 structure reference and then proceeds to select the catch block that corresponds
 to the type info of the exception object.</p>
@@ -453,7 +453,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2007/04/14 12:30:27 $
+  Last modified: $Date: 2007/04/16 13:02:27 $
 </address>
 
 </body>






More information about the llvm-commits mailing list