[lit] Add argument check: --timeout must be non-negative integer
[llvm-core.git] / test / CodeGen / Generic / 2009-03-29-SoftFloatVectorExtract.ll
blobf614db00da48e8f487df911235743fb1bc04b8f5
1 ; RUN: llc < %s
2 ; PR3899
4 @m = external global <2 x double>
6 define double @vector_ex() nounwind #0 {
7        %v = load <2 x double>, <2 x double>* @m
8        %x = extractelement <2 x double> %v, i32 1
9        ret double %x
12 ; Soft-float attribute so that targets that pay attention to soft float will
13 ; make floating point types illegal and we'll exercise the legalizer code.
14 attributes #0 = { "use-soft-float" = "true" }