aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/srem-simplify-bug.ll
blob: bd6428b1e87d58678fe68f5f525afe9b854fb3b5 (plain)
1
2
3
4
5
6
7
8
9
; RUN: opt %s -instcombine | llvm-dis | grep {ret i1 false}
; PR2276

define i1 @f(i32 %x) {
  %A = or i32 %x, 1
  %B = srem i32 %A, 1
  %C = icmp ne i32 %B, 0
  ret i1 %C
}