1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 13:33:37 +02:00
llvm-mirror/test/Transforms/Inline/PR4909.ll
Easwaran Raman cec1646e7a [PM] Port PartialInlining to the new PM
Differential revision: http://reviews.llvm.org/D21699

llvm-svn: 273894
2016-06-27 16:50:18 +00:00

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
}