Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / double2int.ll
1 ; RUN: llc -march=mips < %s | FileCheck %s
2
3 define i32 @f1(double %d) nounwind readnone {
4 entry:
5 ; CHECK: trunc.w.d $f{{[0-9]+}}, $f12
6   %conv = fptosi double %d to i32
7   ret i32 %conv
8 }