e19d552987
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
17 lines
298 B
LLVM
17 lines
298 B
LLVM
; RUN: opt < %s -partial-inliner -disable-output
|
|
; RUN: opt < %s -passes=partial-inliner -disable-output
|
|
|
|
define i32 @f() {
|
|
entry:
|
|
br label %return
|
|
|
|
return: ; preds = %entry
|
|
ret i32 undef
|
|
}
|
|
|
|
define i32 @g() {
|
|
entry:
|
|
%0 = call i32 @f()
|
|
ret i32 %0
|
|
}
|