Bug fixes
authorDavid Mason <davmason@microsoft.com>
Sat, 17 Aug 2019 22:00:46 +0000 (15:00 -0700)
committerDavid Mason <davmason@microsoft.com>
Sat, 17 Aug 2019 22:00:46 +0000 (15:00 -0700)
src/SOS/Strike/strike.cpp

index fa22330b899cb54bcbf1b881fdb055bea27557e2..0d98b58c7a5a3f688109f0667464ed5d1d6a88c1 100644 (file)
@@ -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
             {