[llvm-objdump] - Remove one overload of reportError. NFCI.
[llvm-complete.git] / test / CodeGen / AMDGPU / are-loads-from-same-base-ptr.ll
blob6d26f571c72633f572f4315acec1b16175fd9501
1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
3 ; TII::areLoadsFromSameBasePtr failed because the offset for atomics
4 ; is different from a normal load due to the data operand.
6 ; GCN-LABEL: {{^}}are_loads_from_same_base_ptr_ds_atomic:
7 ; GCN: global_load_dword
8 ; GCN: ds_min_u32
9 ; GCN: ds_max_u32
10 define amdgpu_kernel void @are_loads_from_same_base_ptr_ds_atomic(i32 addrspace(1)* %arg0, i32 addrspace(3)* noalias %ptr0) #0 {
11   %tmp1 = load volatile i32, i32 addrspace(1)* %arg0
12   %tmp2 = atomicrmw umin i32 addrspace(3)* %ptr0, i32 %tmp1 seq_cst
13   %tmp3 = atomicrmw umax i32 addrspace(3)* %ptr0, i32 %tmp1 seq_cst
14   ret void
17 attributes #0 = { nounwind }