summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/2009-08-07-CoalescerBug.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-08-07 07:14:14 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-08-07 07:14:14 +0000
commit15c592ddffc8f0e8d973bb126bd95e5d9a559739 (patch)
treec5937ee09ce2244ff6c95c83e8053353dd788d58 /test/CodeGen/Thumb2/2009-08-07-CoalescerBug.ll
parent53c67c0218d8420234dd71bf2d9df3388909af77 (diff)
downloadllvm-15c592ddffc8f0e8d973bb126bd95e5d9a559739.tar.gz
llvm-15c592ddffc8f0e8d973bb126bd95e5d9a559739.tar.bz2
llvm-15c592ddffc8f0e8d973bb126bd95e5d9a559739.tar.xz
Another coalescer bug. When a dead copy is eliminated, transfer the kill to a def of the exact register rather than a super-register.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb2/2009-08-07-CoalescerBug.ll')
-rw-r--r--test/CodeGen/Thumb2/2009-08-07-CoalescerBug.ll16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CodeGen/Thumb2/2009-08-07-CoalescerBug.ll b/test/CodeGen/Thumb2/2009-08-07-CoalescerBug.ll
new file mode 100644
index 0000000000..4cd5b1e365
--- /dev/null
+++ b/test/CodeGen/Thumb2/2009-08-07-CoalescerBug.ll
@@ -0,0 +1,16 @@
+; RUN: llvm-as < %s | llc -mtriple=armv7-eabi -mattr=+vfp2
+; PR4686
+
+ %a = type { i32 (...)** }
+ %b = type { %a }
+ %c = type { float, float, float, float }
+
+declare arm_aapcs_vfpcc float @bar(%c*)
+
+define arm_aapcs_vfpcc void @foo(%b* %x, %c* %y) {
+entry:
+ %0 = call arm_aapcs_vfpcc float @bar(%c* %y) ; <float> [#uses=0]
+ %1 = fadd float undef, undef ; <float> [#uses=1]
+ store float %1, float* undef, align 8
+ ret void
+}