diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-24 00:37:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-24 00:37:20 +0000 |
commit | 52599e17b17b7b5731bd8e23d6b768a318dc37d3 (patch) | |
tree | 0d1b3842b52b734a62b70eaac7e793c97b45b8c1 | |
parent | 2c1b1597f244c836771b4f2668c0ae399d32a5e9 (diff) |
minor syntax change
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25566 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LangRef.html | 4 | ||||
-rw-r--r-- | test/Feature/inlineasm.ll | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index b7c59a5414..99b1e8a995 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -595,8 +595,8 @@ desired. The syntax is very simple: </p> <div class="doc_code"><pre> - asm "inline asm code goes here" - asm "more can go here" + module asm "inline asm code goes here" + module asm "more can go here" </pre></div> <p>The strings can contain any character by escaping non-printable characters. diff --git a/test/Feature/inlineasm.ll b/test/Feature/inlineasm.ll index 94dbae0780..c866900a53 100644 --- a/test/Feature/inlineasm.ll +++ b/test/Feature/inlineasm.ll @@ -3,6 +3,6 @@ ; RUN: diff Output/t1.ll Output/t2.ll -asm "this is an inline asm block" -asm "this is another inline asm block" +module asm "this is an inline asm block" +module asm "this is another inline asm block" |