From 76b8a33f4a2b699212e94250234b2a53274953a1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 14 May 2006 18:23:06 +0000 Subject: [PATCH] Change token to match asmprinter output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28285 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index b78fa1fef51..8ba8b164b56 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1371,7 +1371,7 @@ branches or with a lookup table.

   <result> = invoke [cconv] <ptr to function ty> %<function ptr val>(<function args>) 
-                to label <normal label> except label <exception label>
+                to label <normal label> unwind label <exception label>
 
Overview:
@@ -1432,9 +1432,9 @@ exception. Additionally, this is important for implementation of
Example:
   %retval = invoke int %Test(int 15)             to label %Continue
-              except label %TestCleanup     ; {int}:retval set
+              unwind label %TestCleanup     ; {int}:retval set
   %retval = invoke coldcc int %Test(int 15)             to label %Continue
-              except label %TestCleanup     ; {int}:retval set
+              unwind label %TestCleanup     ; {int}:retval set