xref: /llvm-project/llvm/test/ThinLTO/X86/newpm-basic.ll (revision 2121dc5b158b0d11667a5d8c39f0121b869ca1c5)
1; RUN: opt -module-summary %s -o %t1.bc
2; RUN: llvm-lto2 run %t1.bc -o %t.o \
3; RUN:     -r=%t1.bc,_tinkywinky,pxl \
4; RUN:     -debug-pass-manager \
5; RUN:     2>&1 | FileCheck %s
6
7; RUN: llvm-lto -thinlto-action=run -exported-symbol tinkywinky \
8; RUN:          -debug-pass-manager \
9; RUN:          %t1.bc 2>&1 | FileCheck %s
10
11; Check that the selected pass manager is used for middle-end optimizations by
12; checking the debug output for IPSCCP.
13
14; CHECK-NOT: Interprocedural Sparse Conditional Constant Propagation
15; CHECK: Running pass: IPSCCPPass on [module]
16; CHECK-NOT: Interprocedural Sparse Conditional Constant Propagation
17
18target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
19target triple = "x86_64-apple-macosx10.11.0"
20
21define void @tinkywinky() {
22    ret void
23}
24