mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
fa2f5577e9
llvm-svn: 153671
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
|
|
}
|