xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/Mips/frem.ll (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1; RUN: llc < %s -march=mipsel
2
3define float @fmods(float %x, float %y) {
4entry:
5  %r = frem float %x, %y
6  ret float %r
7}
8
9define double @fmodd(double %x, double %y) {
10entry:
11  %r = frem double %x, %y
12  ret double %r
13}
14