diff options
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll b/llvm/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll new file mode 100644 index 00000000000..f6e39b3d830 --- /dev/null +++ b/llvm/test/CodeGen/AMDGPU/infinite-loop-evergreen.ll @@ -0,0 +1,10 @@ +; XFAIL: * +; RUN: llc -march=r600 -mcpu=cypress < %s | FileCheck %s + +define void @inf_loop_irreducible_cfg() nounwind { +entry: + br label %block + +block: + br label %block +} |