From: Chris Lattner
Date: Sun, 14 May 2006 18:23:06 +0000 (+0000)
Subject: Change token to match asmprinter output
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=76b8a33f4a2b699212e94250234b2a53274953a1;p=oota-llvm.git
Change token to match asmprinter output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28285 91177308-0d34-0410-b5e6-96231b3b80d8
---
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