14 lines · plain
1; RUN: llc < %s -mtriple=mipsel 2 3define float @fmods(float %x, float %y) {4entry:5 %r = frem float %x, %y6 ret float %r7}8 9define double @fmodd(double %x, double %y) {10entry:11 %r = frem double %x, %y12 ret double %r13}14 1; RUN: llc < %s -mtriple=mipsel 2 3define float @fmods(float %x, float %y) {4entry:5 %r = frem float %x, %y6 ret float %r7}8 9define double @fmodd(double %x, double %y) {10entry:11 %r = frem double %x, %y12 ret double %r13}14