summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/llvm.cos.ll
blob: 9b281670704266451c3c1e310c7efa824ee3cad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s

;CHECK: COS * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}

define void @test() {
   %r0 = call float @llvm.R600.load.input(i32 0)
   %r1 = call float @llvm.cos.f32(float %r0)
   call void @llvm.AMDGPU.store.output(float %r1, i32 0)
   ret void
}

declare float @llvm.cos.f32(float) readnone

declare float @llvm.R600.load.input(i32) readnone

declare void @llvm.AMDGPU.store.output(float, i32)