Files
clang-p2996/llvm/test/Transforms/Inline/pr33637.ll
Lee Wei 8ee638fd17 [llvm] Remove br i1 undef from some regression tests [NFC] (#116161)
This PR removes tests with `br i1 undef` under
`llvm/tests/Transforms/HotColdSplit` and `llvm/tests/Transforms/I*`.
2024-11-15 14:19:50 +00:00

26 lines
441 B
LLVM

; RUN: opt -passes=inline < %s
define void @patatino(i1 %arg) {
for.cond:
br label %for.body
for.body:
%tobool = icmp eq i32 5, 0
%sel = select i1 %tobool, i32 0, i32 2
br i1 %arg, label %cleanup1.thread, label %cleanup1
cleanup1.thread:
ret void
cleanup1:
%cleanup.dest2 = phi i32 [ %sel, %for.body ]
%switch = icmp ult i32 %cleanup.dest2, 1
ret void
}
define void @main() {
entry:
call void @patatino()
ret void
}