XFAIL this test while I investigate it; it's failing for an unexpected reason.
[oota-llvm.git] / test / CodeGen / X86 / split-vector-bitcast.ll
1 ; RUN: llc < %s -march=x86 -mattr=-sse2,+sse | grep addps
2
3 ; XFAIL: *
4 ; PR10497
5 ; (This is primarily checking that this construct doesn't crash.)
6 define void @a(<2 x float>* %a, <2 x i32>* %b) {
7   %cc = load <2 x float>* %a
8   %c = fadd <2 x float> %cc, %cc
9   %dd = bitcast <2 x float> %c to <2 x i32>
10   %d = add <2 x i32> %dd, %dd
11   store <2 x i32> %d, <2 x i32>* %b
12   ret void
13 }