minor syntax change


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25566 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/LangRef.html b/docs/LangRef.html
index b7c59a5..99b1e8a 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -595,8 +595,8 @@
 </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 94dbae0..c866900 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"