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,27 +0,0 @@
; RUN: llc -mcpu=pwr8 -mtriple=powerpc64le-unknown-linux-gnu < %s | FileCheck %s -check-prefix=CHECK-P8 -check-prefix=CHECK
; RUN: llc -mcpu=pwr7 -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s -check-prefix=CHECK-P7 -check-prefix=CHECK
define <4 x float> @test1(float %a) {
entry:
; CHECK-LABEL: test1
%vecins = insertelement <4 x float> undef, float %a, i32 0
%vecins1 = insertelement <4 x float> %vecins, float %a, i32 1
%vecins2 = insertelement <4 x float> %vecins1, float %a, i32 2
%vecins3 = insertelement <4 x float> %vecins2, float %a, i32 3
ret <4 x float> %vecins3
; CHECK-P8: xscvdpspn
; CHECK-P7-NOT: xscvdpspn
; CHECK: blr
}
define <2 x double> @test2(double %a) {
entry:
; CHECK-LABEL: test2
%vecins = insertelement <2 x double> undef, double %a, i32 0
%vecins1 = insertelement <2 x double> %vecins, double %a, i32 1
ret <2 x double> %vecins1
; CHECK-P8: xxspltd
; CHECK-P7: xxspltd
; CHECK: blr
}