summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/fadd64.ll
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-07-12 18:14:56 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-07-12 18:14:56 +0000
commit68e132866236f5d59271d2c7ffb77a9c8e743752 (patch)
treea374a2503b5bddf84a49b091c28937eff830ee6d /test/CodeGen/R600/fadd64.ll
parent7a88b655ccad0f128ea1a5e8ca433a8827a24ff3 (diff)
downloadllvm-68e132866236f5d59271d2c7ffb77a9c8e743752.tar.gz
llvm-68e132866236f5d59271d2c7ffb77a9c8e743752.tar.bz2
llvm-68e132866236f5d59271d2c7ffb77a9c8e743752.tar.xz
R600/SI: Add initial double precision support for SI
Patch by: Niels Ole Salscheider Reviewed-by: Tom Stellard <thomas.stellard@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186177 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/fadd64.ll')
-rw-r--r--test/CodeGen/R600/fadd64.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/R600/fadd64.ll b/test/CodeGen/R600/fadd64.ll
new file mode 100644
index 0000000000..130302f634
--- /dev/null
+++ b/test/CodeGen/R600/fadd64.ll
@@ -0,0 +1,13 @@
+; RUN: llc < %s -march=r600 -mcpu=tahiti | FileCheck %s
+
+; CHECK: @fadd_f64
+; CHECK: V_ADD_F64 {{VGPR[0-9]+_VGPR[0-9]+, VGPR[0-9]+_VGPR[0-9]+, VGPR[0-9]+_VGPR[0-9]+}}
+
+define void @fadd_f64(double addrspace(1)* %out, double addrspace(1)* %in1,
+ double addrspace(1)* %in2) {
+ %r0 = load double addrspace(1)* %in1
+ %r1 = load double addrspace(1)* %in2
+ %r2 = fadd double %r0, %r1
+ store double %r2, double addrspace(1)* %out
+ ret void
+}