From 34728774bf7bf838a1078d399c1069f412246147 Mon Sep 17 00:00:00 2001 From: James Osborn Date: Thu, 29 Aug 2024 22:38:41 -0500 Subject: [PATCH] restore profiling children in hotspot list --- src/base/profile.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/profile.nim b/src/base/profile.nim index b47bc39..309fb77 100644 --- a/src/base/profile.nim +++ b/src/base/profile.nim @@ -822,7 +822,7 @@ proc makeHotspotTable(lrti: List[RTInfoObj]): tuple[ns:int64,oh:int64] = t.children.add ri.children[i] do: # loc not found hs[loc] = ri - #let tot = makeHotSpotTable(List[RTInfoObj](ri.children)) + let tot = makeHotSpotTable(List[RTInfoObj](ri.children)) return (nstot, ohtot) proc echoHotspots* =