Files
clang-p2996/llvm/test/Analysis/RegionInfo/infinite_loop_5_b.ll
Arthur Eubanks 50153213c8 [test][NewPM] Remove RUN lines using -analyze
Only tests in llvm/test/Analysis.

-analyze is legacy PM-specific.

This only touches files with `-passes`.

I looked through everything and made sure that everything had a new PM equivalent.

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D109040
2021-09-02 11:38:14 -07:00

25 lines
437 B
LLVM

; RUN: opt -passes='print<regions>' -disable-output < %s 2>&1 | FileCheck %s
define void @normal_condition() nounwind {
"0":
br label %"7"
"7":
br i1 1, label %"1", label %"9"
"9":
br label %"8"
"1":
br i1 1, label %"6", label %"3"
"6":
br label %"9"
"8":
br label %"8"
"3":
br label %"4"
"4":
ret void
}
; CHECK: Region tree:
; CHECK-NEXT: [0] 0 => <Function Return>
; CHECK-NEXT: End region tree