diff options
Diffstat (limited to 'test/Feature/inlineasm.ll')
-rw-r--r-- | test/Feature/inlineasm.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Feature/inlineasm.ll b/test/Feature/inlineasm.ll new file mode 100644 index 0000000000..94dbae0780 --- /dev/null +++ b/test/Feature/inlineasm.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as %s -o - | llvm-dis > Output/t1.ll +; RUN: llvm-as Output/t1.ll -o - | llvm-dis > Output/t2.ll +; RUN: diff Output/t1.ll Output/t2.ll + + +asm "this is an inline asm block" +asm "this is another inline asm block" + |