Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / CodeGen / X86 / vector-variable-idx.ll
blob2a4d18c141a30c1f4d5d7d95132e9969c9ab2ef3
1 ; RUN: llc < %s -march=x86-64 | grep movss | count 2
2 ; PR2676
4 define float @foo(<4 x float> %p, i32 %t) {
5   %z = extractelement <4 x float> %p, i32 %t
6   ret float %z
8 define <4 x float> @bar(<4 x float> %p, float %f, i32 %t) {
9   %z = insertelement <4 x float> %p, float %f, i32 %t
10   ret <4 x float> %z