16 lines · plain
1; RUN: llc -mtriple=mips < %s | FileCheck %s2 3define float @A(i32 %u) nounwind {4entry:5; CHECK: mtc1 6 bitcast i32 %u to float7 ret float %08}9 10define i32 @B(float %u) nounwind {11entry:12; CHECK: mfc1 13 bitcast float %u to i3214 ret i32 %015}16