mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
fa341d919f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145716 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
245 B
LLVM
16 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
|
|
}
|