mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
16 lines
298 B
LLVM
16 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
|
|
}
|