Jim Stichnoth | 5bc2b1d | 2014-05-22 13:38:48 -0700 | [diff] [blame] | 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 | } | ||||
Matt Wala | 7fa22d8 | 2014-07-17 12:41:31 -0700 | [diff] [blame] | 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 | } |