repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Land the long talked about "type system rewrite" patch. This
[llvm/stm8.git]
/
test
/
Transforms
/
Inline
/
PR4909.ll
blob
24545f9aa8833afa232fbf2a8327a1ad5eaa1883
1
; RUN: opt < %s -partial-inliner -disable-output
2
3
define i32 @f() {
4
entry:
5
br label %return
6
7
return: ; preds = %entry
8
ret i32 undef
9
}
10
11
define i32 @g() {
12
entry:
13
%0 = call i32 @f()
14
ret i32 %0
15
}