blob: bb0590d0eb879a8beeee00b20da992039bd83b8c [file] [log] [blame]
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001target triple = "i686-pc-linux-gnu"
2
3define float @_Z6myFremff(float %a, float %b) {
4 %rem = frem float %a, %b
5 ret float %rem
6}
7
8define double @_Z6myFremdd(double %a, double %b) {
9 %rem = frem double %a, %b
10 ret double %rem
11}
Matt Wala7fa22d82014-07-17 12:41:31 -070012
13define <4 x float> @_Z6myFremDv4_fS_(<4 x float> %a, <4 x float> %b) {
14 %rem = frem <4 x float> %a, %b
15 ret <4 x float> %rem
16}