Merge branch 'master' into msp430
[llvm/msp430.git] / test / CodeGen / Generic / 2009-03-29-SoftFloatVectorExtract.ll
blob40ad3deaeea7062e3adce470852a1abef4fcf6ab
1 ; RUN: llvm-as < %s | llc -soft-float
2 ; PR3899
4 @m = external global <2 x double>;
6 define double @vector_ex() nounwind {
7        %v = load <2 x double>* @m
8        %x = extractelement <2 x double> %v, i32 1
9        ret double %x