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