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
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
llvm
/
test
/
Transforms
/
NewGVN
/
eliminate-callsite-inline.ll
blob
748485c03c18abb77339ccbdd1dbcc53d4a01015
1
; RUN: opt -passes=inline,newgvn -S < %s | FileCheck %s
2
3
; CHECK-LABEL: @f2()
4
; CHECK-NEXT: ret void
5
6
define void @f2() {
7
call void @f1()
8
call void @f1()
9
ret void
10
}
11
12
define internal void @f1() #1 {
13
entry:
14
ret void
15
}
16
17
attributes #1 = { noinline nounwind readnone willreturn }