summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/srem-simplify-bug.ll
blob: 3458714b8daec94a98224a893af2b7cb6422a067 (plain)
1
2
3
4
5
6
7
8
9
; RUN: opt < %s -instcombine -S | 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
}