1 // RUN: rm -f %t.profdata
2 // RUN: %clang_pgogen -o %t -mllvm -pgo-temporal-instrumentation %s
3 // RUN: env LLVM_PROFILE_FILE=%t.0.profraw %run %t n
4 // RUN: env LLVM_PROFILE_FILE=%t.1.profraw %run %t y
5 // RUN: llvm-profdata merge -o %t.profdata %t.0.profraw --weighted-input=5,%t.1.profraw
6 // RUN: llvm-profdata show --temporal-profile-traces %t.profdata | FileCheck %s --implicit-check-not=unused
8 // RUN: rm -f %t.profdata
9 // RUN: %clang_pgogen -o %t -mllvm -pgo-temporal-instrumentation -mllvm -pgo-block-coverage %s
10 // RUN: env LLVM_PROFILE_FILE=%t.0.profraw %run %t n
11 // RUN: env LLVM_PROFILE_FILE=%t.1.profraw %run %t y
12 // RUN: llvm-profdata merge -o %t.profdata %t.0.profraw --weighted-input=5,%t.1.profraw
13 // RUN: llvm-profdata show --temporal-profile-traces %t.profdata | FileCheck %s --implicit-check-not=unused
15 extern void exit(int);
16 extern void __llvm_profile_reset_counters();
20 void unused() { exit(1); }
23 int main(int argc
, const char *argv
[]) {
31 __llvm_profile_reset_counters();
38 // CHECK: Temporal Profile Traces (samples=2 seen=2):
39 // CHECK: Temporal Profile Trace 0 (weight=1 count=4):
44 // CHECK: Temporal Profile Trace 1 (weight=5 count=3):