For PR1319:
[oota-llvm.git] / test / Transforms / InstCombine / 2006-10-26-VectorReassoc.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
2 ; RUN:   grep mul | wc -l | grep 2
3
4
5 <4 x float> %test(<4 x float> %V) {
6         %Y = mul <4 x float> %V, <float 1.0, float 2.0, float 3.0, float 4.0>
7         %Z = mul <4 x float> %Y, <float 1.0, float 200000.0, float -3.0, float 4.0>
8         ret <4 x float> %Z
9 }