You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; 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
|
|
}
|