diff options
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/huge-private-buffer.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/huge-private-buffer.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/huge-private-buffer.ll b/llvm/test/CodeGen/AMDGPU/huge-private-buffer.ll index 7e2d0b0ec9a..8e54dcbd169 100644 --- a/llvm/test/CodeGen/AMDGPU/huge-private-buffer.ll +++ b/llvm/test/CodeGen/AMDGPU/huge-private-buffer.ll @@ -5,9 +5,9 @@ ; GCN-NOT: [[FI]] ; GCN: flat_store_dword v{{\[[0-9]+:[0-9]+\]}}, [[FI]] define amdgpu_kernel void @scratch_buffer_known_high_bit_small() #0 { - %alloca = alloca i32, align 4 - store volatile i32 0, i32* %alloca - %toint = ptrtoint i32* %alloca to i32 + %alloca = alloca i32, align 4, addrspace(5) + store volatile i32 0, i32 addrspace(5)* %alloca + %toint = ptrtoint i32 addrspace(5)* %alloca to i32 %masked = and i32 %toint, 2147483647 store volatile i32 %masked, i32 addrspace(1)* undef ret void @@ -19,9 +19,9 @@ define amdgpu_kernel void @scratch_buffer_known_high_bit_small() #0 { ; GCN-DAG: v_and_b32_e32 [[MASKED:v[0-9]+]], 0x7ffffffc, [[FI]] ; GCN: flat_store_dword v{{\[[0-9]+:[0-9]+\]}}, [[MASKED]] define amdgpu_kernel void @scratch_buffer_known_high_bit_huge() #1 { - %alloca = alloca i32, align 4 - store volatile i32 0, i32* %alloca - %toint = ptrtoint i32* %alloca to i32 + %alloca = alloca i32, align 4, addrspace(5) + store volatile i32 0, i32 addrspace(5)* %alloca + %toint = ptrtoint i32 addrspace(5)* %alloca to i32 %masked = and i32 %toint, 2147483647 store volatile i32 %masked, i32 addrspace(1)* undef ret void |