diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-06-08 18:20:13 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-06-08 18:20:13 +0000 |
| commit | 1b66dd690c1facb870780c031de02695352e2ec2 (patch) | |
| tree | d49bd5bcd2ca15c11523b671150a7cc5a9cabe80 | |
| parent | 36bc2b00ebfb77811b07888cf61ce06c75145a11 (diff) | |
| download | bcm5719-llvm-1b66dd690c1facb870780c031de02695352e2ec2.tar.gz bcm5719-llvm-1b66dd690c1facb870780c031de02695352e2ec2.zip | |
New testcase, using "AX" as i32.
llvm-svn: 28730
| -rw-r--r-- | llvm/test/Regression/CodeGen/X86/inline-asm.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/Regression/CodeGen/X86/inline-asm.ll b/llvm/test/Regression/CodeGen/X86/inline-asm.ll new file mode 100644 index 00000000000..de145091886 --- /dev/null +++ b/llvm/test/Regression/CodeGen/X86/inline-asm.ll @@ -0,0 +1,8 @@ +; RUN: llvm-as < %s | llc -march=x86 + +int %test1() { + ; Dest is AX, dest type = i32. + %tmp4 = call int asm sideeffect "FROB %0", "={ax}"() + ret int %tmp4 +} + |

