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,22 +0,0 @@
; RUN: opt < %s -simplifycfg -S | FileCheck %s
define float @clamp(float %a, float %b, float %c) {
; CHECK-LABEL: @clamp
; CHECK: %cmp = fcmp ogt float %a, %c
; CHECK: %cmp1 = fcmp olt float %a, %b
; CHECK: %cond = select i1 %cmp1, float %b, float %a
; CHECK: %cond5 = select i1 %cmp, float %c, float %cond
; CHECK: ret float %cond5
entry:
%cmp = fcmp ogt float %a, %c
br i1 %cmp, label %cond.end4, label %cond.false
cond.false: ; preds = %entry
%cmp1 = fcmp olt float %a, %b
%cond = select i1 %cmp1, float %b, float %a
br label %cond.end4
cond.end4: ; preds = %entry, %cond.false
%cond5 = phi float [ %cond, %cond.false ], [ %c, %entry ]
ret float %cond5
}