diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2012-07-17 23:51:33 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2012-07-17 23:51:33 +0000 |
commit | 0b5f1aca32076e9a29dc3d716945d1ec6003c96e (patch) | |
tree | fd03d9d0ac13c756445fc7f77f59d7c63e47ba9f /docs/LangRef.html | |
parent | e882accb7a0e348bc86cca969e94e4c61581a4c8 (diff) | |
download | external_llvm-0b5f1aca32076e9a29dc3d716945d1ec6003c96e.zip external_llvm-0b5f1aca32076e9a29dc3d716945d1ec6003c96e.tar.gz external_llvm-0b5f1aca32076e9a29dc3d716945d1ec6003c96e.tar.bz2 |
Apparently it's possible to do an 'invoke asm'.
Update the language reference to reflect that.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 9793659..c32c98c 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2867,8 +2867,9 @@ i32 (i32) asm "bswap $0", "=r,r" </pre> <p>Inline assembler expressions may <b>only</b> be used as the callee operand of - a <a href="#i_call"><tt>call</tt> instruction</a>. Thus, typically we - have:</p> + a <a href="#i_call"><tt>call</tt></a> or an + <a href="#i_invoke"><tt>invoke</tt></a> instruction. + Thus, typically we have:</p> <pre class="doc_code"> %X = call i32 asm "<a href="#int_bswap">bswap</a> $0", "=r,r"(i32 %Y) |