blob: e305f8eff58725ef837d10224c4c1acd0fdf7a37 [file] [log] [blame]
Stanislav Mekhanoshinea91cca2016-11-15 19:00:15 +00001; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2
3; GCN-LABEL: {{^}}test_wave_barrier:
4; GCN-DAG: ; wave barrier
5; GCN-NOT: s_barrier
6
Matt Arsenault3dbeefa2017-03-21 21:39:51 +00007define amdgpu_kernel void @test_wave_barrier() #0 {
Stanislav Mekhanoshinea91cca2016-11-15 19:00:15 +00008entry:
9 call void @llvm.amdgcn.wave.barrier() #1
10 ret void
11}
12
13declare void @llvm.amdgcn.wave.barrier() #1
14
15attributes #0 = { nounwind }
16attributes #1 = { convergent nounwind }