Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.queue.ptr.ll
blob96bd49a66efd0df0dca6fb94addb88d44c6abfdc
1 ; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2 ; RUN: not llc -mtriple=amdgcn-unknown-unknown -mcpu=kaveri -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefix=ERROR %s
4 ; ERROR: in function test{{.*}}: unsupported hsa intrinsic without hsa target
6 ; GCN-LABEL: {{^}}test:
7 ; GCN: s_load_dword s{{[0-9]+}}, s[4:5], 0x0
8 ; GCN: .amdhsa_user_sgpr_queue_ptr 1
9 define amdgpu_kernel void @test(ptr addrspace(1) %out) {
10   %queue_ptr = call noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
11   %value = load i32, ptr addrspace(4) %queue_ptr
12   store i32 %value, ptr addrspace(1) %out
13   ret void
16 declare noalias ptr addrspace(4) @llvm.amdgcn.queue.ptr() #0
18 attributes #0 = { nounwind readnone }
20 !llvm.module.flags = !{!0}
21 !0 = !{i32 1, !"amdgpu_code_object_version", i32 400}