summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-07-12 21:54:43 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-07-12 21:54:43 +0000
commit5343cfe5c8663f35a11fd5ca904f7479c71cd125 (patch)
treef4cb4bf601caa7e8704d59013b016967d1bd115e /test
parent0878d701cb62ebd69faf823e81c55f7e0e10d598 (diff)
downloadllvm-5343cfe5c8663f35a11fd5ca904f7479c71cd125.tar.gz
llvm-5343cfe5c8663f35a11fd5ca904f7479c71cd125.tar.bz2
llvm-5343cfe5c8663f35a11fd5ca904f7479c71cd125.tar.xz
R600: Reapply testcase from r186178, the big endian issue should be fixed by r186196.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186209 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/R600/fconst64.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/R600/fconst64.ll b/test/CodeGen/R600/fconst64.ll
new file mode 100644
index 0000000000..2402a9c786
--- /dev/null
+++ b/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
+}