blob: 8661dc6f8f2626efd0fe23a6fda2a39249a37a4c (
plain)
1
2
3
4
5
6
7
|
// RUN: %clang -### -c -fprofile-generate -ftemporal-profile %s 2>&1 | FileCheck %s
// RUN: %clang -### -c -fcs-profile-generate -ftemporal-profile %s 2>&1 | FileCheck %s
// RUN: not %clang -### -c -ftemporal-profile %s 2>&1 | FileCheck %s --check-prefix=ERR
// CHECK: "-mllvm" "--pgo-temporal-instrumentation"
// ERR: error: invalid argument '-ftemporal-profile' only allowed with '-fprofile-generate or -fcs-profile-generate'
|