[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / NewGVN / eliminate-callsite-inline.ll
blob5d863ccdd6a05658e409278772937aa034812317
1 ; RUN: opt -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 }