From 0b5f1aca32076e9a29dc3d716945d1ec6003c96e Mon Sep 17 00:00:00 2001
From: Nuno Lopes
Date: Tue, 17 Jul 2012 23:51:33 +0000
Subject: [PATCH] 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
---
docs/LangRef.html | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
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)