aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-03-25 02:17:58 +0000
committerChris Lattner <sabre@nondot.org>2007-03-25 02:17:58 +0000
commite4e2e18f478ef5e30c6a638c90ca25efa3d332f4 (patch)
tree3e7efa1501222982ded714a8e34e7911430a9208 /test/CodeGen
parent4234f57fa02b1f04a9f52a7b3c2aa22d32ac521c (diff)
downloadexternal_llvm-e4e2e18f478ef5e30c6a638c90ca25efa3d332f4.zip
external_llvm-e4e2e18f478ef5e30c6a638c90ca25efa3d332f4.tar.gz
external_llvm-e4e2e18f478ef5e30c6a638c90ca25efa3d332f4.tar.bz2
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35323 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/X86/2007-03-24-InlineAsmMultiRegConstraint.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2007-03-24-InlineAsmMultiRegConstraint.ll b/test/CodeGen/X86/2007-03-24-InlineAsmMultiRegConstraint.ll
new file mode 100644
index 0000000..babcf6a
--- /dev/null
+++ b/test/CodeGen/X86/2007-03-24-InlineAsmMultiRegConstraint.ll
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc -march=x86
+
+define i32 @test(i16 %tmp40414244) {
+ %tmp48 = call i32 asm sideeffect "inl ${1:w}, $0", "={ax},N{dx},~{dirflag},~{fpsr},~{flags}"( i16 %tmp40414244 )
+ ret i32 %tmp48
+}
+
+define i32 @test2(i16 %tmp40414244) {
+ %tmp48 = call i32 asm sideeffect "inl ${1:w}, $0", "={ax},N{dx},~{dirflag},~{fpsr},~{flags}"( i16 14 )
+ ret i32 %tmp48
+}