| Dan Gohman | c8054d9 | 2009-09-09 00:09:15 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -soft-float |
| Duncan Sands | d21581e | 2009-03-29 13:51:06 +0000 | [diff] [blame] | 2 | ; PR3899 |
| 3 | |||||
| Dan Gohman | fb41936 | 2010-01-05 17:55:26 +0000 | [diff] [blame] | 4 | @m = external global <2 x double> |
| Duncan Sands | d21581e | 2009-03-29 13:51:06 +0000 | [diff] [blame] | 5 | |
| 6 | define 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 | } | ||||