Fix InstCombine/2007-10-31-StringCrash.ll by removing an obvious
[oota-llvm.git] / test / Transforms / InstCombine / vec_narrow.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
2 ; RUN:   grep {add float}
3
4 %V = type <4 x float>
5
6 float %test(%V %A, %V %B, float %f) {
7         %C = insertelement %V %A, float %f, uint 0
8         %D = add %V %C, %B
9         %E = extractelement %V %D, uint 0
10         ret float %E
11 }
12