[llvm-branch-commits] [clang] [llvm] Coverage] Make additional counters available for BranchRegion. NFC. (PR #120930)

Jessica Paquette via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sun Dec 22 20:35:37 PST 2024


================
@@ -1632,11 +1632,17 @@ class CodeGenFunction : public CodeGenTypeCache {
   /// Increment the profiler's counter for the given statement by \p StepV.
   /// If \p StepV is null, the default increment is 1.
   void incrementProfileCounter(const Stmt *S, llvm::Value *StepV = nullptr) {
+    incrementProfileCounter(false, S, false, StepV);
+  }
+
+  void incrementProfileCounter(bool UseSkipPath, const Stmt *S,
----------------
ornata wrote:

Doxygen comment?

https://github.com/llvm/llvm-project/pull/120930


More information about the llvm-branch-commits mailing list