llvm-project/llvm/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll
Matt Arsenault bde140c47f AMDGPU: Remove a FileCheck from an XFAILed test
In case the assert ever stops, we don't want to hit the FileCheck error
from there being no checks.
2025-03-12 12:18:57 +07:00

12 lines
194 B
LLVM

; XFAIL: *
; REQUIRES: asserts
; RUN: llc -mtriple=r600 -mcpu=cypress < %s
define amdgpu_kernel void @inf_loop_irreducible_cfg() nounwind {
entry:
br label %block
block:
br label %block
}