Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.log.clamp.ll
blob7ed8b8160d03a9013ecc497b6308dd7ef6af1daa
1 ; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2 ; RUN: not llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefix=ERR %s
4 ; ERR: intrinsic not supported on subtarget
6 declare float @llvm.amdgcn.log.clamp.f32(float) #0
8 ; GCN-LABEL: {{^}}v_log_clamp_f32:
9 ; GCN: v_log_clamp_f32_e32 {{v[0-9]+}}, {{s[0-9]+}}
10 define 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) #0
12   store float %log.clamp, ptr addrspace(1) %out
13   ret void
16 attributes #0 = { nounwind readnone }
17 attributes #1 = { nounwind }