1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

minor syntax change

llvm-svn: 25566
This commit is contained in:
Chris Lattner 2006-01-24 00:37:20 +00:00
parent ba1b666382
commit e7851fb711
2 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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"