[mips][mips64r6] cl[oz], and dcl[oz] are re-encoded in MIPS32r6/MIPS64r6
[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 }