bolt/deps/llvm-18.1.8/llvm/test/Transforms/InstCombine/2008-11-01-SRemDemandedBits.ll

9 lines
157 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; RUN: opt < %s -passes=instcombine -S | grep "ret i1 true"
; PR2993
define i1 @foo(i32 %x) {
%1 = srem i32 %x, -1
%2 = icmp eq i32 %1, 0
ret i1 %2
}