bolt/deps/llvm-18.1.8/llvm/test/CodeGen/AMDGPU/reject-agpr-usage-before-gfx908.ll
2025-02-14 19:21:04 +01:00

9 lines
376 B
LLVM

; RUN: not llc -mtriple=amdgcn -mcpu=gfx900 -verify-machineinstrs < %s 2>&1 | FileCheck -check-prefixes=GCN %s
; RUN: not llc -mtriple=amdgcn -mcpu=gfx906 -verify-machineinstrs < %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
}