llvm-project/clang/test/CodeGen/use-sample-profile-attr.c
Arthur Eubanks cb5a10199b [test] Remove tests pinned to the legacy PM
Now that the legacy PM is deprecated for the optimization pipeline, we
can start deleting legacy PM tests.

For tests that test both PMs, merge the RUN lines.
Delete tests specific to the legacy PM.
2021-10-18 16:40:46 -07:00

16 lines
593 B
C

// Test use-sample-profile attribute is present only when SampleFDO
// is enabled.
//
// RUN: %clang_cc1 -O2 \
// RUN: -fprofile-sample-use=%S/Inputs/pgo-sample.prof %s -emit-llvm -o - \
// RUN: 2>&1 | FileCheck %s
// RUN: %clang_cc1 -O2 %s -emit-llvm -o - \
// RUN: 2>&1 | FileCheck %s --check-prefix=NOATTR
// CHECK: define{{.*}} @func{{.*}} #[[ATTRID:[0-9]+]]
// CHECK: attributes #[[ATTRID]] = {{.*}} "use-sample-profile"
// NOATTR: define{{.*}} @func{{.*}} #[[ATTRID:[0-9]+]]
// NOATTR-NOT: attributes #[[ATTRID]] = {{.*}} "use-sample-profile"
int func(int a) { return a; }