blob: e85179755371e6cb0254d7ad938dbe59aa02f130 [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
7define void @test_wave_barrier() #0 {
8entry:
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 }