Imported Upstream version 5.18.0.247

Former-commit-id: 2d6af2e4ed0eda5cbdc2946446ef7718456ad190
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-01-25 08:19:26 +00:00
parent 279aa8f685
commit ce8e504569
28478 changed files with 39 additions and 3866962 deletions

View File

@ -1,19 +0,0 @@
; RUN: llc < %s -mtriple=arm64-eabi -aarch64-neon-syntax=apple | FileCheck %s
define <4 x float> @foo(<4 x i16> %a) nounwind {
; CHECK-LABEL: foo:
; CHECK: ushll.4s v0, v0, #0
; CHECK-NEXT: ucvtf.4s v0, v0
; CHECK-NEXT: ret
%vcvt.i = uitofp <4 x i16> %a to <4 x float>
ret <4 x float> %vcvt.i
}
define <4 x float> @bar(<4 x i16> %a) nounwind {
; CHECK-LABEL: bar:
; CHECK: sshll.4s v0, v0, #0
; CHECK-NEXT: scvtf.4s v0, v0
; CHECK-NEXT: ret
%vcvt.i = sitofp <4 x i16> %a to <4 x float>
ret <4 x float> %vcvt.i
}