Handle vector move / load which zero the destination register top bits (i.e. movd...
[oota-llvm.git] / test / CodeGen / X86 / vec_set-C.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movq
2 ; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+sse2 | grep movd
3
4 define <2 x i64> @t1(i64 %x) nounwind  {
5         %tmp8 = insertelement <2 x i64> zeroinitializer, i64 %x, i32 0
6         ret <2 x i64> %tmp8
7 }