diff options
author | Hanjoung Lee <waterets@gmail.com> | 2017-09-02 00:41:01 +0900 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2017-09-01 08:41:01 -0700 |
commit | 566aed2348f3c65de148d36b445c1aa06f3684ac (patch) | |
tree | 76fb286e4f6a78553454089af24e62e670deef30 | |
parent | d8f56562dffa57b203dae38e33f17a969f06da33 (diff) | |
download | coreclr-566aed2348f3c65de148d36b445c1aa06f3684ac.tar.gz coreclr-566aed2348f3c65de148d36b445c1aa06f3684ac.tar.bz2 coreclr-566aed2348f3c65de148d36b445c1aa06f3684ac.zip |
Initialize m_failedILStubs of ZapperStats (#13742)
-rw-r--r-- | src/zap/zapperstats.cpp | 1 |
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 ) |