aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/R600/fsub.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/R600/fsub.ll')
-rw-r--r--test/CodeGen/R600/fsub.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/R600/fsub.ll b/test/CodeGen/R600/fsub.ll
deleted file mode 100644
index 8e43128..0000000
--- a/test/CodeGen/R600/fsub.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
-
-
-define void @test() {
- %r0 = call float @llvm.R600.load.input(i32 0)
- %r1 = call float @llvm.R600.load.input(i32 1)
- %r2 = fsub float %r0, %r1
- call void @llvm.AMDGPU.store.output(float %r2, i32 0)
- ret void
-}
-
-declare float @llvm.R600.load.input(i32) readnone
-
-declare void @llvm.AMDGPU.store.output(float, i32)
-