summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/complex-asm.ll
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-11-09 01:15:07 +0000
committerDale Johannesen <dalej@apple.com>2010-11-09 01:15:07 +0000
commit71365d3774a6c02f3f198fbf08a56e4b6346bbcc (patch)
treec6996644387643d4198cd0d1b5370e4e984d6a70 /test/CodeGen/X86/complex-asm.ll
parente1f2e502b99fa0bafa6da2976b0cad69dcf6ecd6 (diff)
downloadllvm-71365d3774a6c02f3f198fbf08a56e4b6346bbcc.tar.gz
llvm-71365d3774a6c02f3f198fbf08a56e4b6346bbcc.tar.bz2
llvm-71365d3774a6c02f3f198fbf08a56e4b6346bbcc.tar.xz
Fix an inline asm pasto from 117667; was preventing
{i64, i64} from matching i128. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/complex-asm.ll')
-rw-r--r--test/CodeGen/X86/complex-asm.ll17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGen/X86/complex-asm.ll b/test/CodeGen/X86/complex-asm.ll
new file mode 100644
index 0000000000..49878b982d
--- /dev/null
+++ b/test/CodeGen/X86/complex-asm.ll
@@ -0,0 +1,17 @@
+; RUN: llc < %s -mtriple=x86_64-apple-darwin
+; This formerly crashed.
+
+%0 = type { i64, i64 }
+
+define %0 @f() nounwind ssp {
+entry:
+ %v = alloca %0, align 8
+ call void asm sideeffect "", "=*r,r,r,0,~{dirflag},~{fpsr},~{flags}"(%0* %v, i32 0, i32 1, i128 undef) nounwind
+ %0 = getelementptr inbounds %0* %v, i64 0, i32 0
+ %1 = load i64* %0, align 8
+ %2 = getelementptr inbounds %0* %v, i64 0, i32 1
+ %3 = load i64* %2, align 8
+ %mrv4 = insertvalue %0 undef, i64 %1, 0
+ %mrv5 = insertvalue %0 %mrv4, i64 %3, 1
+ ret %0 %mrv5
+}