[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / replace-lds-by-ptr-ignore-small-lds.ll
blobfe454c7404576cd1e50d9fe62f05eea425a69d7a
1 ; RUN: opt -S -mtriple=amdgcn--  -amdgpu-replace-lds-use-with-pointer -amdgpu-enable-lds-replace-with-pointer=true < %s | FileCheck %s
3 ; DESCRIPTION ;
5 ; LDS global @small_lds is used within non-kernel function @f0, and @f0 is reachable
6 ; from kernel @k0, but since @small_lds too small for pointer replacement, pointer
7 ; replacement does not take place.
10 ; CHECK: @small_lds = addrspace(3) global i8 undef, align 1
11 @small_lds = addrspace(3) global i8 undef, align 1
13 ; CHECK-NOT: @small_lds.ptr
15 define void @f0() {
16 ; CHECK-LABEL: entry:
17 ; CHECK:   store i8 1, i8 addrspace(3)* @small_lds, align 1
18 ; CHECK:   ret void
19 entry:
20   store i8 1, i8 addrspace(3)* @small_lds, align 1
21   ret void
24 define amdgpu_kernel void @k0() {
25 ; CHECK-LABEL: entry:
26 ; CHECK:   call void @f0()
27 ; CHECK:   ret void
28 entry:
29   call void @f0()
30   ret void