summaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-07-12 19:29:54 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-07-12 19:29:54 +0000
commit2a4ac07d21438b37430406a960c0956746f61e7d (patch)
tree632c421af834257eac4c30426fa9c86c6589196e /test/CodeGen
parent7251a75f6ee9ce38263be6580a235187475458ed (diff)
downloadllvm-2a4ac07d21438b37430406a960c0956746f61e7d.tar.gz
llvm-2a4ac07d21438b37430406a960c0956746f61e7d.tar.bz2
llvm-2a4ac07d21438b37430406a960c0956746f61e7d.tar.xz
R600: Remove the fpconst64.ll test which was failing on non-x86 buildbots
I'm guessing the failure had something to do with the double precision floating point constant used in the test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/R600/fconst64.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CodeGen/R600/fconst64.ll b/test/CodeGen/R600/fconst64.ll
deleted file mode 100644
index 2402a9c786..0000000000
--- a/test/CodeGen/R600/fconst64.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; 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
-}