blob: 42114d4fbc88e1e70cd1a84462a874b1e4cdbc90 [file] [log] [blame]
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001define 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}
Matt Wala7fa22d82014-07-17 12:41:31 -070010
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}