xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1; RUN: llc < %s -soft-float
2; PR3899
3
4@m = external global <2 x double>
5
6define double @vector_ex() nounwind {
7       %v = load <2 x double>* @m
8       %x = extractelement <2 x double> %v, i32 1
9       ret double %x
10}
11