
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.
13 lines
416 B
LLVM
13 lines
416 B
LLVM
; RUN: llc < %s -mtriple=amdgcn -mcpu=verde -mattr=dumpcode -filetype=obj | FileCheck --check-prefix=SI %s
|
|
; RUN: llc < %s -mtriple=amdgcn -mcpu=tonga -mattr=dumpcode -filetype=obj | FileCheck --check-prefix=SI %s
|
|
|
|
; Test for a crash in the custom assembly dump code.
|
|
|
|
; SI: test:
|
|
; SI: BB0_0:
|
|
; SI: s_endpgm
|
|
define amdgpu_kernel void @test(ptr addrspace(1) %out) {
|
|
store i32 0, ptr addrspace(1) %out
|
|
ret void
|
|
}
|