18 lines · plain
1; RUN: llc -mtriple=amdgcn < %s | FileCheck -check-prefix=GCN %s2; RUN: not llc -mtriple=amdgcn -mcpu=tonga < %s 2>&1 | FileCheck -check-prefix=ERR %s3 4; ERR: intrinsic not supported on subtarget5 6declare float @llvm.amdgcn.log.clamp.f32(float) #07 8; GCN-LABEL: {{^}}v_log_clamp_f32:9; GCN: v_log_clamp_f32_e32 {{v[0-9]+}}, {{s[0-9]+}}10define amdgpu_kernel void @v_log_clamp_f32(ptr addrspace(1) %out, float %src) #1 {11 %log.clamp = call float @llvm.amdgcn.log.clamp.f32(float %src) #012 store float %log.clamp, ptr addrspace(1) %out13 ret void14}15 16attributes #0 = { nounwind readnone }17attributes #1 = { nounwind }18