As discussed in http://lists.llvm.org/pipermail/llvm-dev/2020-July/143801.html. Currently no users outside of unit tests. Replace all instances in tests of -constprop with -instsimplify. Notable changes in tests: * vscale.ll - @llvm.sadd.sat.nxv16i8 is evaluated by instsimplify, use a fake intrinsic instead * InsertElement.ll - insertelement undef is removed by instsimplify in @insertelement_undef llvm/test/Transforms/ConstProp moved to llvm/test/Transforms/InstSimplify/ConstProp Reviewed By: lattner, nikic Differential Revision: https://reviews.llvm.org/D85159
13 lines
338 B
LLVM
13 lines
338 B
LLVM
; RUN: opt < %s -instcombine -S | grep "ret i32 0"
|
|
; PR4424
|
|
declare void @ext()
|
|
|
|
define i32 @foo(i32 %ptr) {
|
|
entry:
|
|
%zero = sub i32 %ptr, %ptr ; <i32> [#uses=1]
|
|
%div_zero = sdiv i32 %zero, ptrtoint (i32* getelementptr (i32, i32* null,
|
|
i32 1) to i32) ; <i32> [#uses=1]
|
|
ret i32 %div_zero
|
|
}
|
|
|