Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / ThinLTO / X86 / dot-dumper-full-lto.ll
blob219f31fbb10a01c197b02780d349d38022fa0db3
1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary %p/Inputs/dot-dumper.ll -o %t2.bc
3 ; RUN: llvm-lto2 run -save-temps %t1.bc %t2.bc -o %t3 \
4 ; RUN:  -r=%t1.bc,main,px \
5 ; RUN:  -r=%t1.bc,A, \
6 ; RUN:  -r=%t2.bc,foo,p \
7 ; RUN:  -r=%t2.bc,bar,p \
8 ; RUN:  -r=%t2.bc,A,p \
9 ; RUN:  -r=%t2.bc,B,p
10 ; RUN: cat %t3.index.dot | FileCheck %s
12 ; CHECK: subgraph cluster_0
13 ; CHECK:   M0_[[ID:[0-9]+]]{{.*}}main
14 ; CHECK: // Cross-module edges:
15 ; CHECK:  M0_[[ID]] -> M1_{{[0-9]+}}{{.*}}// ref
17 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
18 target triple = "x86_64-unknown-linux-gnu"
20 @A = external global i32
22 define i32 @main() {
23   %v = load i32, ptr @A
24   ret i32 %v
27 !0 = !{i32 1, !"ThinLTO", i32 0}
28 !llvm.module.flags = !{ !0 }