diff --git a/src/coreclr/tools/dotnet-pgo/Program.cs b/src/coreclr/tools/dotnet-pgo/Program.cs index 00ee6f87121366..32b42394b6afe9 100644 --- a/src/coreclr/tools/dotnet-pgo/Program.cs +++ b/src/coreclr/tools/dotnet-pgo/Program.cs @@ -577,7 +577,6 @@ void PrintBar(string label, ref int curIndex, Func include, bool f PrintBar($">{(int)proportion,2}%", ref curIndex, d => d * 100 > proportion, true); PrintBar("0%", ref curIndex, d => true, false); - var wtf = sorted.Where(t => double.IsNaN(t.Overlap)).ToList(); 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")); double mse = sorted.Sum(t => (100 - t.Overlap*100) * (100 - t.Overlap*100)) / sorted.Count; PrintOutput(FormattableString.Invariant($"The mean squared error is {mse:F2}"));