llvm-6502/test/CodeGen/Mips/frem.ll

14 lines
220 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=mipsel
define float @fmods(float %x, float %y) {
entry:
%r = frem float %x, %y
ret float %r
}
define double @fmodd(double %x, double %y) {
entry:
%r = frem double %x, %y
ret double %r
}