mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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
|
||
|
}
|