This implements the second half of the fix for PR3290, handling
[oota-llvm.git] / test / Transforms / InstCombine / 2008-11-27-UDivNegative.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep div
2
3 define i8 @test(i8 %x) readnone nounwind {
4   %A = udiv i8 %x, 250
5   ret i8 %A
6 }