forked from OSchip/llvm-project
Commit works on regular functions too. Fix the syntax to allow @foo.
llvm-svn: 48414
This commit is contained in:
parent
878114bf16
commit
084ab471fe
|
@ -1914,7 +1914,7 @@ branches or with a lookup table.</p>
|
|||
<h5>Syntax:</h5>
|
||||
|
||||
<pre>
|
||||
<result> = invoke [<a href="#callingconv">cconv</a>] <ptr to function ty> %<function ptr val>(<function args>)
|
||||
<result> = invoke [<a href="#callingconv">cconv</a>] <ptr to function ty> <function ptr val>(<function args>)
|
||||
to label <normal label> unwind label <exception label>
|
||||
</pre>
|
||||
|
||||
|
@ -1977,9 +1977,9 @@ exception. Additionally, this is important for implementation of
|
|||
|
||||
<h5>Example:</h5>
|
||||
<pre>
|
||||
%retval = invoke i32 %Test(i32 15) to label %Continue
|
||||
%retval = invoke i32 @Test(i32 15) to label %Continue
|
||||
unwind label %TestCleanup <i>; {i32}:retval set</i>
|
||||
%retval = invoke <a href="#callingconv">coldcc</a> i32 %Test(i32 15) to label %Continue
|
||||
%retval = invoke <a href="#callingconv">coldcc</a> i32 %Testfnptr(i32 15) to label %Continue
|
||||
unwind label %TestCleanup <i>; {i32}:retval set</i>
|
||||
</pre>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue