[InstCombine] Generalize sub of selects optimization to all BinaryOperators
[oota-llvm.git] / test / Transforms / InstCombine / 2008-02-16-SDivOverflow2.ll
1 ; RUN: opt < %s -instcombine -S | grep "sdiv i8 \%a, 9"
2 ; PR2048
3
4 define i8 @i(i8 %a) {
5   %tmp1 = sdiv i8 %a, -3
6   %tmp2 = sdiv i8 %tmp1, -3
7   ret i8 %tmp2
8 }
9