Akira Hatanaka | 21ecc2f | 2012-03-29 18:43:11 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=mipsel |
2 | |||||
3 | define float @fmods(float %x, float %y) { | ||||
4 | entry: | ||||
5 | %r = frem float %x, %y | ||||
6 | ret float %r | ||||
7 | } | ||||
8 | |||||
9 | define double @fmodd(double %x, double %y) { | ||||
10 | entry: | ||||
11 | %r = frem double %x, %y | ||||
12 | ret double %r | ||||
13 | } |