summaryrefslogtreecommitdiff
path: root/docs/LangRef.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r--docs/LangRef.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index b78fa1fef5..8ba8b164b5 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -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>