diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-23 23:24:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-23 23:24:13 +0000 |
commit | 243f7296e545cf003e3a44fe3272f593d8d291ef (patch) | |
tree | 2ecfea2a00ff1b17682570b760bd8a0838bf4a5f /llvm/test/Feature/inlineasm.ll | |
parent | 91c15c40a71e9e7256f51e6de820768dd5ae3bcb (diff) | |
download | bcm5719-llvm-243f7296e545cf003e3a44fe3272f593d8d291ef.tar.gz bcm5719-llvm-243f7296e545cf003e3a44fe3272f593d8d291ef.zip |
new testcase
llvm-svn: 25562
Diffstat (limited to 'llvm/test/Feature/inlineasm.ll')
-rw-r--r-- | llvm/test/Feature/inlineasm.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/Feature/inlineasm.ll b/llvm/test/Feature/inlineasm.ll new file mode 100644 index 00000000000..94dbae0780f --- /dev/null +++ b/llvm/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" + |