[PUSHED,2/3] Remove TODO comment

Message ID 20260901124929.514896-2-j@lambda.is
State Committed
Commit 2faf6424478a5ea2f4ee4da5e19361d0e8ef57ab
Headers
Series [PUSHED,1/3] Check past-the-end before dereferencing iterator |

Commit Message

Jørgen Kvalsvik Sept. 1, 2026, 12:49 p.m. UTC
  The comment shouldn't have been checked in in the first place, sorry.

gcc/ChangeLog:

	* gcov.cc (find_prime_paths): Remove comment.
---
 gcc/gcov.cc | 3 ---
 1 file changed, 3 deletions(-)
  

Patch

diff --git a/gcc/gcov.cc b/gcc/gcov.cc
index 0ad48eb1b54..06047a60460 100644
--- a/gcc/gcov.cc
+++ b/gcc/gcov.cc
@@ -3215,9 +3215,6 @@  find_prime_paths (function_info *fn)
     }
 
   vec<vec<int>> prime_paths (struct graph*, size_t);
-  /* TODO: Pass extra information in the PATH_TAG section.  In case
-     that is empty this might still need to be tunable should the
-     coverage be requested without instrumentation.  */
   vec<vec<int>> paths = prime_paths (cfg, (size_t)-1);
   fn->paths.paths.reserve (paths.length ());
   for (vec<int> &path : paths)