
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.
10 lines
332 B
LLVM
10 lines
332 B
LLVM
; RUN: not llc -mtriple=amdgcn -mcpu=gfx900 < %s 2>&1 | FileCheck -check-prefixes=GCN %s
|
|
; RUN: not llc -mtriple=amdgcn -mcpu=gfx906 < %s 2>&1 | FileCheck -check-prefixes=GCN %s
|
|
|
|
; GCN: couldn't allocate input reg for constraint 'a'
|
|
|
|
define amdgpu_kernel void @used_1a() {
|
|
call void asm sideeffect "", "a"(i32 1)
|
|
ret void
|
|
}
|