diff options
-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" |