1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/X86/bitcast-int-to-vector.ll
2007-10-29 20:44:42 +00:00

11 lines
231 B
LLVM

; RUN: llvm-as < %s | llc -march=x86
define i1 @foo(i64 %a)
{
%t = bitcast i64 %a to <2 x float>
%r = extractelement <2 x float> %t, i32 0
%s = extractelement <2 x float> %t, i32 1
%b = fcmp uno float %r, %s
ret i1 %b
}