mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
c9307490ce
llvm-svn: 81540
16 lines
242 B
LLVM
16 lines
242 B
LLVM
; RUN: opt < %s -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
|
|
}
|