1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll
NAKAMURA Takumi 60e0afcb3c llvm/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll REQUIRES +Asserts.
This might not *crash* with -Asserts. I saw it caused infinite loop in the codegen.

llvm-svn: 281190
2016-09-12 04:27:28 +00:00

12 lines
193 B
LLVM

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