When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / Transforms / ConstProp / remtest.ll
blobefd2d48332a2ac17e5af6ecdecb26b4a291bad03
1 ; Ensure constant propagation of remainder instructions is working correctly.
3 ; RUN: opt < %s -constprop -die -S | not grep rem
5 define i32 @test1() {
6         %R = srem i32 4, 3              ; <i32> [#uses=1]
7         ret i32 %R
10 define i32 @test2() {
11         %R = srem i32 123, -23          ; <i32> [#uses=1]
12         ret i32 %R
15 define float @test3() {
16         %R = frem float 0x4028E66660000000, 0x405ECDA1C0000000          ; <float> [#uses=1]
17         ret float %R
20 define double @test4() {
21         %R = frem double 0x4073833BEE07AFF8, 0x4028AAABB2A0D19C         ; <double> [#uses=1]
22         ret double %R