8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
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
|
|
}
|