summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/R600/fconst64.ll
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-07-12 18:15:02 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-07-12 18:15:02 +0000
commitab8a8c84d4a1026abcd80e87c41726b8347a961e (patch)
tree43b46813756aecb0fb799dd745af4b6626e788d1 /llvm/test/CodeGen/R600/fconst64.ll
parent7512c0803cdce7713c81dbbaee17b65abdc8b9b1 (diff)
downloadbcm5719-llvm-ab8a8c84d4a1026abcd80e87c41726b8347a961e.tar.gz
bcm5719-llvm-ab8a8c84d4a1026abcd80e87c41726b8347a961e.zip
R600/SI: SI support for 64bit ConstantFP
Patch by: Niels Ole Salscheider Reviewed-by: Tom Stellard <thomas.stellard@amd.com> llvm-svn: 186178
Diffstat (limited to 'llvm/test/CodeGen/R600/fconst64.ll')
-rw-r--r--llvm/test/CodeGen/R600/fconst64.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/fconst64.ll b/llvm/test/CodeGen/R600/fconst64.ll
new file mode 100644
index 00000000000..2402a9c786e
--- /dev/null
+++ b/llvm/test/CodeGen/R600/fconst64.ll
@@ -0,0 +1,12 @@
+; RUN: llc < %s -march=r600 -mcpu=tahiti | FileCheck %s
+
+; CHECK: @fconst_f64
+; CHECK: V_MOV_B32_e32 {{VGPR[0-9]+}}, 0.000000e+00
+; CHECK-NEXT: V_MOV_B32_e32 {{VGPR[0-9]+}}, 2.312500e+00
+
+define void @fconst_f64(double addrspace(1)* %out, double addrspace(1)* %in) {
+ %r1 = load double addrspace(1)* %in
+ %r2 = fadd double %r1, 5.000000e+00
+ store double %r2, double addrspace(1)* %out
+ ret void
+}
OpenPOWER on IntegriCloud