summaryrefslogtreecommitdiff
path: root/src/zap/zapperstats.cpp
diff options
context:
space:
mode:
authorHanjoung Lee <waterets@gmail.com>2017-09-02 00:41:01 +0900
committerJan Kotas <jkotas@microsoft.com>2017-09-01 08:41:01 -0700
commit566aed2348f3c65de148d36b445c1aa06f3684ac (patch)
tree76fb286e4f6a78553454089af24e62e670deef30 /src/zap/zapperstats.cpp
parentd8f56562dffa57b203dae38e33f17a969f06da33 (diff)
downloadcoreclr-566aed2348f3c65de148d36b445c1aa06f3684ac.tar.gz
coreclr-566aed2348f3c65de148d36b445c1aa06f3684ac.tar.bz2
coreclr-566aed2348f3c65de148d36b445c1aa06f3684ac.zip
Initialize m_failedILStubs of ZapperStats (#13742)
Diffstat (limited to 'src/zap/zapperstats.cpp')
-rw-r--r--src/zap/zapperstats.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zap/zapperstats.cpp b/src/zap/zapperstats.cpp
index 8a7be16905..3265d02abe 100644
--- a/src/zap/zapperstats.cpp
+++ b/src/zap/zapperstats.cpp
@@ -73,6 +73,7 @@ static_assert_no_msg((sizeof(callReasons)/sizeof(callReasons[0])) == CORINFO_IND
ZapperStats::ZapperStats()
: m_methods( 0 )
, m_failedMethods( 0 )
+ , m_failedILStubs( 0 )
, m_ilCodeSize( 0 )
, m_nativeCodeSize( 0 )
, m_nativeColdCodeSize( 0 )