1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/CodeGen/Mips/frem.ll
Akira Hatanaka fa2f5577e9 Expand FREM.
llvm-svn: 153671
2012-03-29 18:43:11 +00:00

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
}