Imported Upstream version 5.18.0.167

Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-10-20 08:25:10 +00:00
parent e19d552987
commit b084638f15
28489 changed files with 184 additions and 3866856 deletions

View File

@ -1,19 +0,0 @@
; RUN: llc -march=sparc < %s | FileCheck %s
; If computeKnownSignBits (in SelectionDAG) can do a simple
; look-thru for extractelement then we we know that the add will yield a
; non-negative result.
define i1 @test1(<4 x i16>* %in) {
; CHECK-LABEL: ! %bb.0:
; CHECK-NEXT: retl
; CHECK-NEXT: sethi 0, %o0
%vec2 = load <4 x i16>, <4 x i16>* %in, align 1
%vec3 = lshr <4 x i16> %vec2, <i16 2, i16 2, i16 2, i16 2>
%vec4 = sext <4 x i16> %vec3 to <4 x i32>
%elt0 = extractelement <4 x i32> %vec4, i32 0
%elt1 = extractelement <4 x i32> %vec4, i32 1
%sum = add i32 %elt0, %elt1
%bool = icmp slt i32 %sum, 0
ret i1 %bool
}