1; RUN: llc -mtriple=amdgcn-amd-amdhsa-amdgiz -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2
3target datalayout = "e-p:64:64-p1:64:64-p2:64:64-p3:32:32-p4:32:32-p5:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-A5"
4
5; GCN-LABEL: @test_unaligned_load
6; GCN: buffer_load_dword
7; GCN-NOT: flat_load_dword
8define amdgpu_kernel void @test_unaligned_load(<16 x double> addrspace(1)* %results, i32 %i) {
9entry:
10  %a = inttoptr i32 %i to <16 x double> addrspace(5)*
11  %v = load <16 x double>, <16 x double> addrspace(5)* %a, align 8
12  store <16 x double> %v, <16 x double> addrspace(1)* %results, align 128
13  ret void
14}
15
16; GCN-LABEL: @test_unaligned_store
17; GCN: buffer_store_dword
18; GCN-NOT: flat_store_dword
19define amdgpu_kernel void @test_unaligned_store(<16 x double> %v, i32 %i) {
20entry:
21  %a = inttoptr i32 %i to <16 x double> addrspace(5)*
22  store <16 x double> %v, <16 x double> addrspace(5)* %a, align 8
23  ret void
24}
25