blob: 9a9c1a110d61a9be1dc62f1a97bcbf7da88a8cc6 [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s -soft-float
Duncan Sands754fad12009-03-29 13:51:06 +00002; 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}