[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.rcp.f16.ll
blobf49c503cc77d68848a408f414bd865ddb6ba58e1
1 ; RUN: llc -march=amdgcn -mcpu=fiji -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=VI %s
3 declare half @llvm.amdgcn.rcp.f16(half %a)
5 ; GCN-LABEL: {{^}}rcp_f16
6 ; GCN: buffer_load_ushort v[[A_F16:[0-9]+]]
7 ; VI:  v_rcp_f16_e32 v[[R_F16:[0-9]+]], v[[A_F16]]
8 ; GCN: buffer_store_short v[[R_F16]]
9 ; GCN: s_endpgm
10 define amdgpu_kernel void @rcp_f16(
11     ptr addrspace(1) %r,
12     ptr addrspace(1) %a) {
13 entry:
14   %a.val = load half, ptr addrspace(1) %a
15   %r.val = call half @llvm.amdgcn.rcp.f16(half %a.val)
16   store half %r.val, ptr addrspace(1) %r
17   ret void