mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-06 19:31:13 +00:00
142428ce64
llvm-svn: 81293
11 lines
219 B
LLVM
11 lines
219 B
LLVM
; 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
|
|
}
|