repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git]
/
llvm
/
test
/
Transforms
/
MetaRenamer
/
main.ll
blob
83b31044f434f313826ad2faacfe92bdeef9da42
1
; Make sure @main is left untouched.
2
; RUN: opt -metarenamer -S %s | FileCheck %s
3
; RUN: opt -passes=metarenamer -S %s | FileCheck %s
4
5
; CHECK: define void @main
6
; CHECK: call void @main
7
8
define void @main() {
9
call void @patatino()
10
ret void
11
}
12
13
define void @patatino() {
14
call void @main()
15
ret void
16
}