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,18 +0,0 @@
; RUN: opt < %s -deadargelim -S | not grep DEAD
; Dead arg only used by dead retval
define internal i32 @test(i32 %DEADARG) {
ret i32 %DEADARG
}
define i32 @test2(i32 %A) {
%DEAD = call i32 @test( i32 %A ) ; <i32> [#uses=0]
ret i32 123
}
define i32 @test3() {
%X = call i32 @test2( i32 3232 ) ; <i32> [#uses=1]
%Y = add i32 %X, -123 ; <i32> [#uses=1]
ret i32 %Y
}