1*9880d681SAndroid Build Coastguard Worker; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=GCN %s 2*9880d681SAndroid Build Coastguard Worker; RUN: not llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefix=ERR %s 3*9880d681SAndroid Build Coastguard Worker 4*9880d681SAndroid Build Coastguard Worker; ERR: intrinsic not supported on subtarget 5*9880d681SAndroid Build Coastguard Worker 6*9880d681SAndroid Build Coastguard Workerdeclare float @llvm.amdgcn.log.clamp.f32(float) #0 7*9880d681SAndroid Build Coastguard Worker 8*9880d681SAndroid Build Coastguard Worker; GCN-LABEL: {{^}}v_log_clamp_f32: 9*9880d681SAndroid Build Coastguard Worker; GCN: v_log_clamp_f32_e32 {{v[0-9]+}}, {{s[0-9]+}} 10*9880d681SAndroid Build Coastguard Workerdefine void @v_log_clamp_f32(float addrspace(1)* %out, float %src) #1 { 11*9880d681SAndroid Build Coastguard Worker %log.clamp = call float @llvm.amdgcn.log.clamp.f32(float %src) #0 12*9880d681SAndroid Build Coastguard Worker store float %log.clamp, float addrspace(1)* %out 13*9880d681SAndroid Build Coastguard Worker ret void 14*9880d681SAndroid Build Coastguard Worker} 15*9880d681SAndroid Build Coastguard Worker 16*9880d681SAndroid Build Coastguard Workerattributes #0 = { nounwind readnone } 17*9880d681SAndroid Build Coastguard Workerattributes #1 = { nounwind } 18