Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / InstSimplify / ConstProp / remtest.ll
blob5cd10715c01ec2eeb48aa8de0b56e5e8eee8bc4e
1 ; Ensure constant propagation of remainder instructions is working correctly.
3 ; RUN: opt < %s -passes=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