repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
CodeGen
/
X86
/
bitcast-int-to-vector.ll
blob
4c25979dcd5e7171208960dce82af5d8a1760d95
1
; RUN: llc < %s -march=x86
2
3
define i1 @foo(i64 %a)
4
{
5
%t = bitcast i64 %a to <2 x float>
6
%r = extractelement <2 x float> %t, i32 0
7
%s = extractelement <2 x float> %t, i32 1
8
%b = fcmp uno float %r, %s
9
ret i1 %b
10
}