OLD | NEW |
1 target triple = "i686-pc-linux-gnu" | |
2 | |
3 define float @_Z6myFremff(float %a, float %b) { | 1 define float @_Z6myFremff(float %a, float %b) { |
4 %rem = frem float %a, %b | 2 %rem = frem float %a, %b |
5 ret float %rem | 3 ret float %rem |
6 } | 4 } |
7 | 5 |
8 define double @_Z6myFremdd(double %a, double %b) { | 6 define double @_Z6myFremdd(double %a, double %b) { |
9 %rem = frem double %a, %b | 7 %rem = frem double %a, %b |
10 ret double %rem | 8 ret double %rem |
11 } | 9 } |
12 | 10 |
13 define <4 x float> @_Z6myFremDv4_fS_(<4 x float> %a, <4 x float> %b) { | 11 define <4 x float> @_Z6myFremDv4_fS_(<4 x float> %a, <4 x float> %b) { |
14 %rem = frem <4 x float> %a, %b | 12 %rem = frem <4 x float> %a, %b |
15 ret <4 x float> %rem | 13 ret <4 x float> %rem |
16 } | 14 } |
OLD | NEW |