opnsense-src/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll

11 lines
218 B
LLVM
Raw Normal View History

2009-10-14 13:57:32 -04:00
; RUN: llc < %s -soft-float
2009-06-02 13:52:33 -04:00
; PR3899
2010-01-15 10:37:28 -05:00
@m = external global <2 x double>
2009-06-02 13:52:33 -04:00
define double @vector_ex() nounwind {
%v = load <2 x double>* @m
%x = extractelement <2 x double> %v, i32 1
ret double %x
}