Files
clang-p2996/llvm/test/Transforms/InstSimplify/ConstProp/remtest.ll
Arthur Eubanks f4f7df037e [DIE] Remove DeadInstEliminationPass
This pass is like DeadCodeEliminationPass, but only does one pass
through a function instead of iterating on users of eliminated
instructions.

DeadCodeEliminationPass should be used in all cases.

Reviewed By: asbirlea

Differential Revision: https://reviews.llvm.org/D87933
2020-09-21 12:12:25 -07:00

25 lines
620 B
LLVM

; Ensure constant propagation of remainder instructions is working correctly.
; RUN: opt < %s -instsimplify -dce -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
}