Files
clang-p2996/llvm/test/Transforms/InstCombine/2007-06-21-DivCompareMiscomp.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
282 B
LLVM

; RUN: opt < %s -passes=instcombine -S | grep "ret i1 true"
; rdar://5278853
define i1 @test(i32 %tmp468) {
%tmp470 = udiv i32 %tmp468, 4 ; <i32> [#uses=2]
%tmp475 = icmp ult i32 %tmp470, 1073741824 ; <i1> [#uses=1]
ret i1 %tmp475
}