diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/LangRef.html | 4 | ||||
-rw-r--r-- | llvm/test/Feature/inlineasm.ll | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index b7c59a54146..99b1e8a9957 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/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/llvm/test/Feature/inlineasm.ll b/llvm/test/Feature/inlineasm.ll index 94dbae0780f..c866900a535 100644 --- a/llvm/test/Feature/inlineasm.ll +++ b/llvm/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" |