llvm-project/llvm/test/Transforms/InstCombine/2008-02-16-SDivOverflow2.ll
Bjorn Pettersson acdc419c89 [test] Use -passes=instcombine instead of -instcombine in lots of tests. NFC
Another step moving away from the deprecated syntax of specifying
pass pipeline in opt.

Differential Revision: https://reviews.llvm.org/D119081
2022-02-07 14:26:59 +01:00

10 lines
166 B
LLVM

; RUN: opt < %s -passes=instcombine -S | grep "sdiv i8 \%a, 9"
; PR2048
define i8 @i(i8 %a) {
%tmp1 = sdiv i8 %a, -3
%tmp2 = sdiv i8 %tmp1, -3
ret i8 %tmp2
}