Skip to content

Commit c8486b6

Browse files
authored
Remove some left-over debug code (#55408)
1 parent a7a9448 commit c8486b6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/coreclr/tools/dotnet-pgo/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,6 @@ void PrintBar(string label, ref int curIndex, Func<double, bool> include, bool f
577577
PrintBar($">{(int)proportion,2}%", ref curIndex, d => d * 100 > proportion, true);
578578
PrintBar("0%", ref curIndex, d => true, false);
579579

580-
var wtf = sorted.Where(t => double.IsNaN(t.Overlap)).ToList();
581580
PrintOutput(FormattableString.Invariant($"The average overlap is {sorted.Average(t => t.Overlap)*100:F2}% for the {sorted.Count} methods with matching flow graphs and profile data"));
582581
double mse = sorted.Sum(t => (100 - t.Overlap*100) * (100 - t.Overlap*100)) / sorted.Count;
583582
PrintOutput(FormattableString.Invariant($"The mean squared error is {mse:F2}"));

0 commit comments

Comments
 (0)