You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
298 B
17 lines
298 B
4 months ago
|
; 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
|
||
|
}
|