1 define float @_Z6myFremff(float %a, float %b) { 2 %rem = frem float %a, %b 3 ret float %rem 4 } 5 6 define double @_Z6myFremdd(double %a, double %b) { 7 %rem = frem double %a, %b 8 ret double %rem 9 } 10 11 define <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