summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-14 18:23:06 +0000
committerChris Lattner <sabre@nondot.org>2006-05-14 18:23:06 +0000
commit76b8a33f4a2b699212e94250234b2a53274953a1 (patch)
tree2ca3a764abb650d693bd07eece9852a137fa6856 /docs
parent3e246dd0849154ec54dea4d5e421c24cd1524202 (diff)
downloadllvm-76b8a33f4a2b699212e94250234b2a53274953a1.tar.gz
llvm-76b8a33f4a2b699212e94250234b2a53274953a1.tar.bz2
llvm-76b8a33f4a2b699212e94250234b2a53274953a1.tar.xz
Change token to match asmprinter output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28285 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-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>