279aa8f685
Former-commit-id: 0c7ce5b1a7851e13f22acfd379b7f9fb304e4833
14 lines
220 B
LLVM
14 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
|
|
}
|