Files
clang-p2996/llvm/test/Transforms/InstSimplify/ConstProp/remtest.ll
Arthur Eubanks 486ed88533 [ConstProp] Remove ConstantPropagation
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
2020-08-26 15:51:30 -07:00

25 lines
620 B
LLVM

; Ensure constant propagation of remainder instructions is working correctly.
; RUN: opt < %s -instsimplify -die -S | not grep rem
define i32 @test1() {
%R = srem i32 4, 3 ; <i32> [#uses=1]
ret i32 %R
}
define i32 @test2() {
%R = srem i32 123, -23 ; <i32> [#uses=1]
ret i32 %R
}
define float @test3() {
%R = frem float 0x4028E66660000000, 0x405ECDA1C0000000 ; <float> [#uses=1]
ret float %R
}
define double @test4() {
%R = frem double 0x4073833BEE07AFF8, 0x4028AAABB2A0D19C ; <double> [#uses=1]
ret double %R
}