aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/R600/llvm.trunc.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/R600/llvm.trunc.ll')
-rw-r--r--test/CodeGen/R600/llvm.trunc.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/R600/llvm.trunc.ll b/test/CodeGen/R600/llvm.trunc.ll
deleted file mode 100644
index 5585477..0000000
--- a/test/CodeGen/R600/llvm.trunc.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
-
-; CHECK-LABEL: {{^}}trunc_f32:
-; CHECK: TRUNC
-
-define void @trunc_f32(float addrspace(1)* %out, float %in) {
-entry:
- %0 = call float @llvm.trunc.f32(float %in)
- store float %0, float addrspace(1)* %out
- ret void
-}
-
-declare float @llvm.trunc.f32(float)