[clang] Fix crashes when passing VLA to va_arg (#119563)
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / llvm.amdgcn.s.dcache.inv.vol.ll
blob57f8f6073f1cded2429691b574fe0f6c3d549959
1 ; RUN: llc -mtriple=amdgcn -mcpu=bonaire -show-mc-encoding < %s | FileCheck -check-prefix=GCN -check-prefix=CI %s
2 ; RUN: llc -mtriple=amdgcn -mcpu=tonga -show-mc-encoding < %s | FileCheck -check-prefix=GCN -check-prefix=VI %s
4 declare void @llvm.amdgcn.s.dcache.inv.vol() #0
5 declare void @llvm.amdgcn.s.waitcnt(i32) #0
7 ; GCN-LABEL: {{^}}test_s_dcache_inv_vol:
8 ; GCN-NEXT: ; %bb.0:
9 ; CI-NEXT: s_dcache_inv_vol ; encoding: [0x00,0x00,0x40,0xc7]
10 ; VI-NEXT: s_dcache_inv_vol ; encoding: [0x00,0x00,0x88,0xc0,0x00,0x00,0x00,0x00]
11 ; GCN-NEXT: s_endpgm
12 define amdgpu_kernel void @test_s_dcache_inv_vol() #0 {
13   call void @llvm.amdgcn.s.dcache.inv.vol()
14   ret void
17 ; GCN-LABEL: {{^}}test_s_dcache_inv_vol_insert_wait:
18 ; GCN-NEXT: ; %bb.0:
19 ; GCN: s_dcache_inv_vol
20 ; GCN: s_waitcnt lgkmcnt(0) ; encoding
21 define amdgpu_kernel void @test_s_dcache_inv_vol_insert_wait() #0 {
22   call void @llvm.amdgcn.s.dcache.inv.vol()
23   call void @llvm.amdgcn.s.waitcnt(i32 127)
24   br label %end
26 end:
27   store volatile i32 3, ptr addrspace(1) undef
28   ret void
31 attributes #0 = { nounwind }