repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
eliminate the "MBBLabel" MCOperand type, and just use a MCSymbol for
[llvm/avr.git]
/
test
/
Transforms
/
Inline
/
inline-tail.ll
blob
8bb059d01a0c29fb526fe5ded44fa6d67fc9dc6c
1
; RUN: opt < %s -inline -S | not grep tail
2
3
declare void @bar(i32*)
4
5
define internal void @foo(i32* %P) {
6
tail call void @bar( i32* %P )
7
ret void
8
}
9
10
define void @caller() {
11
%A = alloca i32 ; <i32*> [#uses=1]
12
call void @foo( i32* %A )
13
ret void
14
}
15