From 38dfac70a6318dbaae88476cb9677985bda2b691 Mon Sep 17 00:00:00 2001 From: David Mason Date: Sat, 17 Aug 2019 15:00:46 -0700 Subject: [PATCH] Bug fixes --- src/SOS/Strike/strike.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/SOS/Strike/strike.cpp b/src/SOS/Strike/strike.cpp index fa22330b8..0d98b58c7 100644 --- a/src/SOS/Strike/strike.cpp +++ b/src/SOS/Strike/strike.cpp @@ -6095,7 +6095,7 @@ DECLARE_API(DumpModule) kcMaxMethodDescsForProfiler, &cMethodDescs))) { - if (cMethodDescs >0) + if (cMethodDescs > 0) { ExtOut("\nMethods in this module with profiler modified IL:\n"); for (int i = 0; i < cMethodDescs; ++i) @@ -6125,6 +6125,11 @@ DECLARE_API(DumpModule) ExtOut("\n"); } + + if (cMethodDescs == kcMaxMethodDescsForProfiler) + { + ExtOut("Profiler modified methods truncated, reached max value.\n"); + } } else { -- 2.34.1