[OpenACC] Enable 'attach' clause for combined constructs
[llvm-project.git] / lld / test / ELF / lto / sample-profile.ll
blob68976dfa7ecd75cd1324bc61733476b323d363fa
1 ; REQUIRES: x86
2 ; RUN: opt -module-summary %s -o %t1.o
3 ; RUN: opt -module-summary %p/Inputs/thinlto.ll -o %t2.o
5 ; RUN: rm -f %t1.o.4.opt.bc
6 ; RUN: ld.lld --lto-sample-profile=%p/Inputs/sample-profile.prof %t1.o %t2.o --save-temps -o %t3
7 ; RUN: opt -S %t1.o.4.opt.bc | FileCheck %s
9 ; RUN: rm -f %t1.o.4.opt.bc
10 ; RUN: ld.lld --plugin-opt=sample-profile=%p/Inputs/sample-profile.prof %t1.o %t2.o --save-temps -o %t3
11 ; RUN: opt -S %t1.o.4.opt.bc | FileCheck %s
13 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
14 target triple = "x86_64-unknown-linux-gnu"
16 ; CHECK: ![[#]] = !{i32 1, !"ProfileSummary", ![[#]]}
17 declare void @g(...)
18 declare void @h(...)
20 define void @f() {
21 entry:
22   call void (...) @g()
23   call void (...) @h()
24   ret void