summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/lsr-static-addr.ll
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2010-09-17 15:48:55 +0000
committerdim <dim@FreeBSD.org>2010-09-17 15:48:55 +0000
commit5d5cc59cc77afe655b3707cb0e69e0827b444cad (patch)
tree36453626c792cccd91f783a38a169d610a6b9db9 /test/CodeGen/X86/lsr-static-addr.ll
parent786a18553586229ad99ecb5ecde8a9d914c45e27 (diff)
downloadFreeBSD-src-5d5cc59cc77afe655b3707cb0e69e0827b444cad.zip
FreeBSD-src-5d5cc59cc77afe655b3707cb0e69e0827b444cad.tar.gz
Vendor import of llvm r114020 (from the release_28 branch):
http://llvm.org/svn/llvm-project/llvm/branches/release_28@114020 Approved by: rpaulo (mentor)
Diffstat (limited to 'test/CodeGen/X86/lsr-static-addr.ll')
-rw-r--r--test/CodeGen/X86/lsr-static-addr.ll31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/CodeGen/X86/lsr-static-addr.ll b/test/CodeGen/X86/lsr-static-addr.ll
new file mode 100644
index 0000000..c9ed3e5
--- /dev/null
+++ b/test/CodeGen/X86/lsr-static-addr.ll
@@ -0,0 +1,31 @@
+; RUN: llc -march=x86-64 -mtriple=x86_64-unknown-linux-gnu -relocation-model=static -asm-verbose=false < %s | FileCheck %s
+
+; CHECK: xorl %eax, %eax
+; CHECK: movsd .LCPI0_0(%rip), %xmm0
+; CHECK: align
+; CHECK-NEXT: BB0_2:
+; CHECK-NEXT: movsd A(,%rax,8)
+; CHECK-NEXT: mulsd
+; CHECK-NEXT: movsd
+; CHECK-NEXT: incq %rax
+
+@A = external global [0 x double]
+
+define void @foo(i64 %n) nounwind {
+entry:
+ %cmp5 = icmp sgt i64 %n, 0
+ br i1 %cmp5, label %for.body, label %for.end
+
+for.body:
+ %i.06 = phi i64 [ %inc, %for.body ], [ 0, %entry ]
+ %arrayidx = getelementptr [0 x double]* @A, i64 0, i64 %i.06
+ %tmp3 = load double* %arrayidx, align 8
+ %mul = fmul double %tmp3, 2.300000e+00
+ store double %mul, double* %arrayidx, align 8
+ %inc = add nsw i64 %i.06, 1
+ %exitcond = icmp eq i64 %inc, %n
+ br i1 %exitcond, label %for.end, label %for.body
+
+for.end:
+ ret void
+}
OpenPOWER on IntegriCloud