repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use Align for TFL::TransientStackAlignment
[llvm-core.git]
/
test
/
CodeGen
/
Mips
/
2008-08-04-Bitconvert.ll
blob
78a49ffbe44430cb3e0cb37cb8d1299be1f44d4a
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
}