repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Transforms
/
MetaRenamer
/
main.ll
blob
f11d70f2b1a7f2b9f83afdfeb2621fa8b6d6c778
1
; Make sure @main is left untouched.
2
; RUN: opt -metarenamer -S %s | FileCheck %s
3
4
; CHECK: define void @main
5
; CHECK: call void @main
6
7
define void @main() {
8
call void @patatino()
9
ret void
10
}
11
12
define void @patatino() {
13
call void @main()
14
ret void
15
}