https://bugs.llvm.org/show_bug.cgi?id=48900
Bug ID: 48900
Summary: [InstCombine] Infinite loop with select / icmp
Product: libraries
Version: trunk
Hardware: PC
OS: All
Status: NEW
Severity: enhancement
Priority: P
Component: Scalar Optimizations
Assignee: unassignedb...@nondot.org
Reporter: florian_h...@apple.com
CC: llvm-bugs@lists.llvm.org
Running `opt -instcombine` on the function below triggers an infinite loop in
instcombine and it looks like it does not get caught by the existing checks.
define i32 @clamp_check_for_no_infinite_loop3(i32 %i) {
%i2 = icmp ugt i32 %i, 1
%i3 = select i1 %i2, i32 %i, i32 1
%i4 = icmp sgt i32 %i3, 0
br i1 %i4, label %truelabel, label %falselabel
truelabel: ; preds = %0
%i5 = icmp slt i32 %i3, 2
%i6 = select i1 %i5, i32 %i3, i32 2
%i7 = shl nuw nsw i32 %i6, 2
ret i32 %i7
falselabel: ; preds = %0
ret i32 0
}
This is a reduced version of
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29957
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs