
Recent upstream trends have moved away from explicitly using `-verify-machineinstrs`, as it's already covered by the expensive checks. This PR removes almost all `-verify-machineinstrs` from tests in `llvm/test/CodeGen/AMDGPU/*.ll`, leaving only those tests where its removal currently causes failures.
15 lines
613 B
LLVM
15 lines
613 B
LLVM
; RUN: llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx1100 < %s | FileCheck -check-prefixes=GCN,GFX11 %s
|
|
; RUN: llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx1100 < %s | FileCheck -check-prefixes=GCN,GFX11 %s
|
|
; RUN: llc -global-isel=0 -mtriple=amdgcn -mcpu=gfx1200 < %s | FileCheck -check-prefixes=GCN,GFX12 %s
|
|
; RUN: llc -global-isel=1 -mtriple=amdgcn -mcpu=gfx1200 < %s | FileCheck -check-prefixes=GCN,GFX12 %s
|
|
|
|
; GCN-LABEL: {{^}}test_wait_event:
|
|
; GFX11: s_wait_event 0x0
|
|
; GFX12: s_wait_event 0x2
|
|
|
|
define amdgpu_ps void @test_wait_event() {
|
|
entry:
|
|
call void @llvm.amdgcn.s.wait.event.export.ready()
|
|
ret void
|
|
}
|