repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
Transforms
/
TailCallElim
/
trivial_codegen_tailcall.ll
blob
3dddb013f7ce65a6b013fb1b6f2e7cfce9ba7a8e
1
; RUN: opt < %s -tailcallelim -S | \
2
; RUN: grep {tail call void @foo}
3
4
5
declare void @foo()
6
7
define void @bar() {
8
call void @foo( )
9
ret void
10
}
11