Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / frem.ll
1 ; RUN: llc < %s -march=mipsel 
2
3 define float @fmods(float %x, float %y) {
4 entry:
5   %r = frem float %x, %y
6   ret float %r
7 }
8
9 define double @fmodd(double %x, double %y) {
10 entry:
11   %r = frem double %x, %y
12   ret double %r
13 }