Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.lerp.ll
blob9a2715b2ebc202df7953afd36e40840b46166d2f
1 ; RUN: llc -mtriple=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2 ; RUN: llc -mtriple=amdgcn -mcpu=fiji -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
4 declare i32 @llvm.amdgcn.lerp(i32, i32, i32) #0
6 ; GCN-LABEL: {{^}}v_lerp:
7 ; GCN: v_lerp_u8 v{{[0-9]+}}, v{{[0-9]+}}, s{{[0-9]+}}, s{{[0-9]+}}
8 define amdgpu_kernel void @v_lerp(ptr addrspace(1) %out, i32 %src) nounwind {
9   %result= call i32 @llvm.amdgcn.lerp(i32 %src, i32 100, i32 100) #0
10   store i32 %result, ptr addrspace(1) %out, align 4
11   ret void
14 attributes #0 = { nounwind readnone }