Change token to match asmprinter output
authorChris Lattner <sabre@nondot.org>
Sun, 14 May 2006 18:23:06 +0000 (18:23 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 14 May 2006 18:23:06 +0000 (18:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28285 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LangRef.html

index b78fa1fef51e3f0c7343fb2cae4044a6c63fe0c6..8ba8b164b5684edd23775e8a625292bd6dc750c9 100644 (file)
@@ -1371,7 +1371,7 @@ branches or with a lookup table.</p>
 
 <pre>
   &lt;result&gt; = invoke [<a href="#callingconv">cconv</a>] &lt;ptr to function ty&gt; %&lt;function ptr val&gt;(&lt;function args&gt;) 
-                to label &lt;normal label&gt; except label &lt;exception label&gt;
+                to label &lt;normal label&gt; unwind label &lt;exception label&gt;
 </pre>
 
 <h5>Overview:</h5>
@@ -1432,9 +1432,9 @@ exception.  Additionally, this is important for implementation of
 <h5>Example:</h5>
 <pre>
   %retval = invoke int %Test(int 15)             to label %Continue
-              except label %TestCleanup     <i>; {int}:retval set</i>
+              unwind label %TestCleanup     <i>; {int}:retval set</i>
   %retval = invoke <a href="#callingconv">coldcc</a> int %Test(int 15)             to label %Continue
-              except label %TestCleanup     <i>; {int}:retval set</i>
+              unwind label %TestCleanup     <i>; {int}:retval set</i>
 </pre>
 </div>