1; RUN: llc -march=mips < %s | FileCheck %s
2
3define float @A(i32 %u) nounwind {
4entry:
5; CHECK: mtc1
6 bitcast i32 %u to float
7 ret float %0
8}
9
10define i32 @B(float %u) nounwind {
11entry:
12; CHECK: mfc1
13 bitcast float %u to i32
14 ret i32 %0
15}
16