[clang] StmtPrinter: Handle DeclRefExpr to a Decomposition (#125001)
[llvm-project.git] / llvm / test / CodeGen / Generic / 2009-03-29-SoftFloatVectorExtract.ll
blobb09859def617d625114f3d44ff53133b81d9e046
1 ; XFAIL: target={{.*}}-aix{{.*}}
2 ; RUN: llc < %s
3 ; PR3899
5 @m = external global <2 x double>
7 define double @vector_ex() nounwind #0 {
8        %v = load <2 x double>, ptr @m
9        %x = extractelement <2 x double> %v, i32 1
10        ret double %x
13 ; Soft-float attribute so that targets that pay attention to soft float will
14 ; make floating point types illegal and we'll exercise the legalizer code.
15 attributes #0 = { "use-soft-float" = "true" }