We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4172ca commit 03cfce1Copy full SHA for 03cfce1
clang/lib/CodeGen/CodeGenFunction.h
@@ -1624,6 +1624,9 @@ class CodeGenFunction : public CodeGenTypeCache {
1624
return PGO.getIsCounterPair(S);
1625
}
1626
1627
+ void markStmtAsUsed(bool Skipped, const Stmt *S) {
1628
+ PGO.markStmtAsUsed(Skipped, S);
1629
+ }
1630
void markStmtMaybeUsed(const Stmt *S) { PGO.markStmtMaybeUsed(S); }
1631
1632
/// Increment the profiler's counter for the given statement by \p StepV.
0 commit comments