xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/Mips/frem.ll (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
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