[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Bitcode / thinlto-alias2.ll
blob22815f8ec24c1481cd94f499d8f644698bb22d10
1 ; Test to check the callgraph for call to alias in module.
2 ; RUN: opt -module-summary %s -o %t.o
3 ; RUN: llvm-bcanalyzer -dump %t.o | FileCheck %s
5 ; CHECK:       <GLOBALVAL_SUMMARY_BLOCK
6 ; CHECK-NEXT:    <VERSION
7 ; CHECK-NEXT:    <FLAGS
8 ; CHECK-NEXT:    <PERMODULE {{.*}} op4=0 op5=0 op6=0 op7=[[ALIASID:[0-9]+]]/>
9 ; CHECK-NEXT:    <PERMODULE {{.*}} op0=[[ALIASEEID:[0-9]+]]
10 ; CHECK-NEXT:    <ALIAS {{.*}} op0=[[ALIASID]] {{.*}} op2=[[ALIASEEID]]/>
11 ; CHECK-NEXT:    <BLOCK_COUNT op0=2/>
12 ; CHECK-NEXT:  </GLOBALVAL_SUMMARY_BLOCK>
14 ; ModuleID = 'thinlto-alias2.ll'
15 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
16 target triple = "x86_64-unknown-linux-gnu"
18 define i32 @main() {
19 entry:
20     call void (...) @analias()
21     ret i32 0
24 @analias = alias void (...), bitcast (void ()* @aliasee to void (...)*)
26 define void @aliasee() #0 {
27 entry:
28     ret void