allwinner_a64/android/external/llvm/test/CodeGen/Mips/frem.ll
2018-08-08 16:14:42 +08:00

13 lines
220 B
LLVM

; 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
}