xref: /aosp_15_r20/external/swiftshader/third_party/subzero/crosstest/test_arith_frem.ll (revision 03ce13f70fcc45d86ee91b7ee4cab1936a95046e)
1define float @_Z6myFremff(float %a, float %b) {
2  %rem = frem float %a, %b
3  ret float %rem
4}
5
6define double @_Z6myFremdd(double %a, double %b) {
7  %rem = frem double %a, %b
8  ret double %rem
9}
10
11define <4 x float> @_Z6myFremDv4_fS_(<4 x float> %a, <4 x float> %b) {
12  %rem = frem <4 x float> %a, %b
13  ret <4 x float> %rem
14}
15