diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2012-07-16 18:19:43 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2012-07-16 18:19:43 +0000 |
commit | a4be0720c56e60194572a9b12a09a62e35324fcc (patch) | |
tree | 453671f82ae7cb09ebc2b754236834700d024a35 /test/CodeGen/R600/fsub.ll | |
parent | d72304faf4c83dd744c42dd5ee4cb4edefaaa28e (diff) | |
download | external_llvm-a4be0720c56e60194572a9b12a09a62e35324fcc.zip external_llvm-a4be0720c56e60194572a9b12a09a62e35324fcc.tar.gz external_llvm-a4be0720c56e60194572a9b12a09a62e35324fcc.tar.bz2 |
Revert "test/CodeGen/R600: Add some basic tests v6"
This reverts commit 11d3457afcda7848448dd7f11b2ede6552ffb9ea.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/fsub.ll')
-rw-r--r-- | test/CodeGen/R600/fsub.ll | 15 |
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) - |