8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
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
|
|
}
|