xref: /aosp_15_r20/external/llvm/test/Transforms/ADCE/2003-09-15-InfLoopCrash.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: opt < %s -adce -disable-output
2
3define i32 @main() {
4        br label %loop
5
6loop:           ; preds = %loop, %0
7        br label %loop
8}
9
10