mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
5fa04f2707
llvm-svn: 92740
11 lines
218 B
LLVM
11 lines
218 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
|
|
}
|