linux-packaging-mono/external/llvm/test/Transforms/Inline/2003-10-13-AllocaDominanceProblem.ll
Xamarin Public Jenkins (auto-signing) 8e12397d70 Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
2018-11-16 08:20:38 +00:00

20 lines
429 B
LLVM

; RUN: opt < %s -inline -disable-output
define i32 @reload() {
reloadentry:
br label %A
A: ; preds = %reloadentry
call void @callee( )
ret i32 0
}
define internal void @callee() {
entry:
%X = alloca i8, i32 0 ; <i8*> [#uses=0]
%Y = bitcast i32 0 to i32 ; <i32> [#uses=1]
%Z = alloca i8, i32 %Y ; <i8*> [#uses=0]
ret void
}