2008-06-21-CompareMiscomp.ll 210 B

1234567891011
  1. ; RUN: opt < %s -instcombine -S | grep "icmp eq i32 %In, 15"
  2. ; PR2479
  3. ; (See also PR1800.)
  4. define i1 @test(i32 %In) {
  5. %c1 = icmp ugt i32 %In, 13
  6. %c2 = icmp eq i32 %In, 15
  7. %V = and i1 %c1, %c2
  8. ret i1 %V
  9. }