Sign in
rust
/
rust-lang
/
llvm-project
/
e8a2ffcf322f45b8dce82c65ab27a3e2430a6b51
/
.
/
llvm
/
test
/
CodeGen
/
Mips
/
2008-08-04-Bitconvert.ll
blob: 8fcda34f889a5a60d93e51354d7c5ab7238d7b6d [
file
] [
log
] [
blame
]
; RUN: llc -mtriple=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
}