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