Imported Upstream version 5.18.0.182

Former-commit-id: f9d55cf82631bfd710c387739687e5845296aea1
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-10-26 08:32:15 +00:00
parent 8625704ad8
commit b716dc8d12
28490 changed files with 76 additions and 3866845 deletions

View File

@ -1,50 +0,0 @@
; RUN: llc < %s -O0 -mtriple=x86_64-apple-darwin10 | FileCheck %s
; Test if we do not fold the cmp into select if the instructions are in
; different basic blocks.
define i32 @select_cmp_cmov_i32(i32 %a, i32 %b) {
; CHECK-LABEL: select_cmp_cmov_i32:
; CHECK-LABEL: continue
; CHECK-NOT: cmp{{[^_]}}
%1 = icmp ult i32 %a, %b
br i1 %1, label %continue, label %exit
continue:
%2 = select i1 %1, i32 %a, i32 %b
ret i32 %2
exit:
ret i32 -1
}
define float @select_fcmp_oeq_f32(float %a, float %b, float %c, float %d) {
; CHECK-LABEL: select_fcmp_oeq_f32:
; CHECK-LABEL: continue
; CHECK-NOT: cmp{{[^_]}}
%1 = fcmp oeq float %a, %b
br i1 %1, label %continue, label %exit
continue:
%2 = select i1 %1, float %c, float %d
ret float %2
exit:
ret float -1.0
}
define float @select_fcmp_one_f32(float %a, float %b, float %c, float %d) {
; CHECK-LABEL: select_fcmp_one_f32:
; CHECK-LABEL: continue
; CHECK-NOT: ucomi
%1 = fcmp one float %a, %b
br i1 %1, label %continue, label %exit
continue:
%2 = select i1 %1, float %c, float %d
ret float %2
exit:
ret float -1.0
}