summaryrefslogtreecommitdiff
path: root/test/CodeGen/Mips/frem.ll
blob: be222b2d9172a0d074ab707f82917ea93563f037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; 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
}