Imported Upstream version 6.10.0.49

Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2020-01-16 16:38:04 +00:00
parent d94e79959b
commit 468663ddbb
48518 changed files with 2789335 additions and 61176 deletions

View File

@ -0,0 +1,19 @@
; RUN: llc -mtriple=aarch64-apple-darwin -O0 -fast-isel -fast-isel-abort=1 -verify-machineinstrs < %s | FileCheck %s
; CHECK-LABEL: int_ext_opt
define i64 @int_ext_opt(i8* %addr, i1 %c1, i1 %c2) {
entry:
%0 = load i8, i8* %addr
br i1 %c1, label %bb1, label %bb2
bb1:
%1 = zext i8 %0 to i64
br i1 %c2, label %bb2, label %exit
bb2:
%2 = phi i64 [1, %entry], [%1, %bb1]
ret i64 %2
exit:
ret i64 0
}