diff options
author | Dale Johannesen <dalej@apple.com> | 2010-11-09 01:15:07 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2010-11-09 01:15:07 +0000 |
commit | f11ea9ce618c6a0407431c2f88abbc6dc34bbc90 (patch) | |
tree | d31e883598528b8504d69926b0d17d0d072288c6 /llvm/test/CodeGen/X86/complex-asm.ll | |
parent | 7b0c25faf6f9bda89151dd1071c99886824020ec (diff) | |
download | bcm5719-llvm-f11ea9ce618c6a0407431c2f88abbc6dc34bbc90.tar.gz bcm5719-llvm-f11ea9ce618c6a0407431c2f88abbc6dc34bbc90.zip |
Fix an inline asm pasto from 117667; was preventing
{i64, i64} from matching i128.
llvm-svn: 118465
Diffstat (limited to 'llvm/test/CodeGen/X86/complex-asm.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/complex-asm.ll | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/complex-asm.ll b/llvm/test/CodeGen/X86/complex-asm.ll new file mode 100644 index 00000000000..49878b982db --- /dev/null +++ b/llvm/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 +} |