1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Transforms/Inline/pr33637.ll
Eric Christopher a62270de2c Revert "Temporarily Revert "Add basic loop fusion pass.""
The reversion apparently deleted the test/Transforms directory.

Will be re-reverting again.

llvm-svn: 358552
2019-04-17 04:52:47 +00:00

26 lines
428 B
LLVM

; RUN: opt -inline < %s
define void @patatino() {
for.cond:
br label %for.body
for.body:
%tobool = icmp eq i32 5, 0
%sel = select i1 %tobool, i32 0, i32 2
br i1 undef, 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
}