Home | History | Annotate | Download | only in InstCombine
      1 ; RUN: opt < %s -instcombine -S | not grep div
      2 
      3 define i8 @test(i8 %x) readnone nounwind {
      4   %A = udiv i8 %x, 250
      5   ret i8 %A
      6 }
      7