mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-24 11:36:10 +00:00
d8dec6c86f
r300198 fixed a problem that caused two tests to be xfailed. Unxfail these tests now, since they are passing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300203 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
371 B
LLVM
12 lines
371 B
LLVM
; RUN: llc < %s
|
|
|
|
; PR31338
|
|
; XFAIL: avr
|
|
|
|
define <2 x double> @vector_select(<2 x double> %x, <2 x double> %y) nounwind {
|
|
%x.lo = extractelement <2 x double> %x, i32 0 ; <double> [#uses=1]
|
|
%x.lo.ge = fcmp oge double %x.lo, 0.000000e+00 ; <i1> [#uses=1]
|
|
%a.d = select i1 %x.lo.ge, <2 x double> %y, <2 x double> %x ; <<2 x double>> [#uses=1]
|
|
ret <2 x double> %a.d
|
|
}
|