-
Notifications
You must be signed in to change notification settings - Fork 15k
Closed
Labels
llvm:instcombineCovers the InstCombine, InstSimplify and AggressiveInstCombine passesCovers the InstCombine, InstSimplify and AggressiveInstCombine passesmissed-optimization
Description
https://alive2.llvm.org/ce/z/GjCXkB
define i32 @src(i1 %t1, i1 %t2, i32 %a, i32 %b, i32 %c) {
%s1 = select i1 %t1, i32 %a, i32 %b
%and = select i1 %t1, i1 %t2, i1 false
%s2 = select i1 %and, i32 %c, i32 %s1
ret i32 %s2
}
define i32 @tgt(i1 %t1, i1 %t2, i32 %a, i32 %b, i32 %c) {
%s1 = select i1 %t2, i32 %c, i32 %a
%s2 = select i1 %t1, i32 %s1, i32 %b
ret i32 %s2
}
Metadata
Metadata
Assignees
Labels
llvm:instcombineCovers the InstCombine, InstSimplify and AggressiveInstCombine passesCovers the InstCombine, InstSimplify and AggressiveInstCombine passesmissed-optimization