14 lines · c
1// RUN: %clang -### -fpseudo-probe-for-profiling %s 2>&1 | FileCheck %s --check-prefix=YESPROBE2// RUN: %clang -### -fno-pseudo-probe-for-profiling %s 2>&1 | FileCheck %s --check-prefix=NOPROBE3// RUN: %clang -### -fpseudo-probe-for-profiling -fdebug-info-for-profiling %s 2>&1 | FileCheck %s --check-prefix=YESPROBE --check-prefix=YESDEBUG 4// RUN: %clang -### -fpseudo-probe-for-profiling -funique-internal-linkage-names %s 2>&1 | FileCheck %s --check-prefix=YESPROBE5// RUN: %clang -### -fpseudo-probe-for-profiling -fno-unique-internal-linkage-names %s 2>&1 | FileCheck %s --check-prefix=NONAME6 7// YESDEBUG: -fdebug-info-for-profiling8// YESPROBE: -fpseudo-probe-for-profiling9// YESPROBE: -funique-internal-linkage-names10// NOPROBE-NOT: -fpseudo-probe-for-profiling11// NOPROBE-NOT: -funique-internal-linkage-names12// NONAME: -fpseudo-probe-for-profiling13// NONAME-NOT: -funique-internal-linkage-names14