Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / GlobalISel / llvm.amdgcn.queue.ptr.ll
blob37578f0ba26e2a30fbee4f0270a61e77559f6101
1 ; RUN: llc -global-isel -mtriple=amdgcn--amdhsa -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
3 ; FIXME: Error on non-hsa target
5 ; GCN-LABEL: {{^}}test:
6 ; GCN: s_load_dword s{{[0-9]+}}, s[4:5], 0x0
7 ; GCN: .amdhsa_user_sgpr_queue_ptr 1
8 define amdgpu_kernel void @test(ptr addrspace(1) %out) {
9   %queue_ptr = call noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
10   %value = load i32, ptr addrspace(4) %queue_ptr
11   store i32 %value, ptr addrspace(1) %out
12   ret void
15 declare noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
17 attributes #0 = { nounwind readnone }
19 !llvm.module.flags = !{!0}
20 !0 = !{i32 1, !"amdgpu_code_object_version", i32 400}