brintos

brintos / llvm-project-archived public Read only

0
0
Text · 613 B · 27a8b35 Raw
15 lines · plain
1; RUN: llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx1100 < %s | FileCheck -check-prefixes=GCN,GFX11 %s2; RUN: llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx1100 < %s | FileCheck -check-prefixes=GCN,GFX11 %s3; RUN: llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx1200 < %s | FileCheck -check-prefixes=GCN,GFX12 %s4; RUN: llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx1200 < %s | FileCheck -check-prefixes=GCN,GFX12 %s5 6; GCN-LABEL: {{^}}test_wait_event:7; GFX11: s_wait_event 0x08; GFX12: s_wait_event 0x29 10define amdgpu_ps void @test_wait_event() {11entry:12  call void @llvm.amdgcn.s.wait.event.export.ready()13  ret void14}15