blob: 9a9c1a110d61a9be1dc62f1a97bcbf7da88a8cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
; RUN: llc < %s -soft-float
; PR3899
@m = external global <2 x double>;
define double @vector_ex() nounwind {
%v = load <2 x double>* @m
%x = extractelement <2 x double> %v, i32 1
ret double %x
}
|