From: Nuno Lopes Date: Tue, 17 Jul 2012 23:51:33 +0000 (+0000) Subject: Apparently it's possible to do an 'invoke asm'. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0b5f1aca32076e9a29dc3d716945d1ec6003c96e;p=oota-llvm.git 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 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 97936598174..c32c98c36d8 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2867,8 +2867,9 @@ i32 (i32) asm "bswap $0", "=r,r"

Inline assembler expressions may only be used as the callee operand of - a call instruction. Thus, typically we - have:

+ a call or an + invoke instruction. + Thus, typically we have:

 %X = call i32 asm "bswap $0", "=r,r"(i32 %Y)