[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / InstSimplify / ConstProp / remtest.ll
blob39de31318169c108ffbeda5eec4006977caedc9f
1 ; Ensure constant propagation of remainder instructions is working correctly.
3 ; RUN: opt < %s -instsimplify -dce -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