diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2012-07-16 14:17:19 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2012-07-16 14:17:19 +0000 |
commit | 6693fbe3ebe4f34c10c0e5dc1164cf7e583dc02d (patch) | |
tree | a67909a98385eb40b4e7840b74f786c72b8779cf /llvm/test/CodeGen/R600/fadd.ll | |
parent | 812e652b43e4bdcaf965e306397a42381c4ac12f (diff) | |
download | bcm5719-llvm-6693fbe3ebe4f34c10c0e5dc1164cf7e583dc02d.tar.gz bcm5719-llvm-6693fbe3ebe4f34c10c0e5dc1164cf7e583dc02d.zip |
test/CodeGen/R600: Add some basic tests v6
llvm-svn: 160273
Diffstat (limited to 'llvm/test/CodeGen/R600/fadd.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/fadd.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/fadd.ll b/llvm/test/CodeGen/R600/fadd.ll new file mode 100644 index 00000000000..874fcc6f43e --- /dev/null +++ b/llvm/test/CodeGen/R600/fadd.ll @@ -0,0 +1,15 @@ +;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 = fadd 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) + |