-
Notifications
You must be signed in to change notification settings - Fork 15k
Closed
Labels
good first issuehttps://github.com/llvm/llvm-project/contributehttps://github.com/llvm/llvm-project/contributellvm:instcombineCovers the InstCombine, InstSimplify and AggressiveInstCombine passesCovers the InstCombine, InstSimplify and AggressiveInstCombine passes
Description
Forking this off from #57330:
define i1 @src(i8 %x) {
%add = shl i8 %x, 1
%cmp = icmp ult i8 %add, %x
ret i1 %cmp
}
define i1 @tgt(i8 %x) {
%r = icmp slt i8 %x, 0
ret i1 %r
}
Metadata
Metadata
Assignees
Labels
good first issuehttps://github.com/llvm/llvm-project/contributehttps://github.com/llvm/llvm-project/contributellvm:instcombineCovers the InstCombine, InstSimplify and AggressiveInstCombine passesCovers the InstCombine, InstSimplify and AggressiveInstCombine passes