blob: 370bec09848fc5bf08674492464f6999e175704f [file] [log] [blame]
Dan Gohmana3591d92007-10-29 20:44:42 +00001; RUN: llvm-as < %s | llc -march=x86
2
3define 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}