diff options
Diffstat (limited to 'llvm/test/CodeGen/R600/llvm.AMDIL.max..ll')
-rw-r--r-- | llvm/test/CodeGen/R600/llvm.AMDIL.max..ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/llvm.AMDIL.max..ll b/llvm/test/CodeGen/R600/llvm.AMDIL.max..ll new file mode 100644 index 00000000000..337371234ae --- /dev/null +++ b/llvm/test/CodeGen/R600/llvm.AMDIL.max..ll @@ -0,0 +1,16 @@ +;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 = call float @llvm.AMDIL.max.( float %r0, float %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) + +declare float @llvm.AMDIL.max.(float ,float ) readnone |