frem.ll 220 Bytes Raw Blame History Permalink 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 }