mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
10 lines
218 B
LLVM
10 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
|
|
}
|