llvm-project/llvm/test/Transforms/InstCombine/2005-06-16-RangeCrash.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
254 B
LLVM

; RUN: opt < %s -passes=instcombine -disable-output
; PR585
define i1 @test() {
%tmp.26 = sdiv i32 0, -2147483648 ; <i32> [#uses=1]
%tmp.27 = icmp eq i32 %tmp.26, 0 ; <i1> [#uses=1]
ret i1 %tmp.27
}