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,25 +0,0 @@
; RUN: opt < %s -instcombine | llvm-dis
; This used to crash trying to do a double-to-pointer conversion
define i32 @bar() {
entry:
%retval = alloca i32, align 4 ; <i32*> [#uses=1]
%tmp = call i32 (...) bitcast (i32 (i8*)* @f to i32 (...)*)( double 3.000000e+00 ) ; <i32> [#uses=0]
br label %return
return: ; preds = %entry
%retval1 = load i32, i32* %retval ; <i32> [#uses=1]
ret i32 %retval1
}
define i32 @f(i8* %p) {
entry:
%p_addr = alloca i8* ; <i8**> [#uses=1]
%retval = alloca i32, align 4 ; <i32*> [#uses=1]
store i8* %p, i8** %p_addr
br label %return
return: ; preds = %entry
%retval1 = load i32, i32* %retval ; <i32> [#uses=1]
ret i32 %retval1
}