allwinner_a64/android/external/llvm/test/CodeGen/Mips/2008-08-04-Bitconvert.ll
2018-08-08 16:14:42 +08:00

15 lines
245 B
LLVM

; RUN: llc -march=mips < %s | FileCheck %s
define float @A(i32 %u) nounwind {
entry:
; CHECK: mtc1
bitcast i32 %u to float
ret float %0
}
define i32 @B(float %u) nounwind {
entry:
; CHECK: mfc1
bitcast float %u to i32
ret i32 %0
}