From be3247f9b9f9c320f21a657e3b4da519ffa4cf57 Mon Sep 17 00:00:00 2001 From: John Chen Date: Thu, 19 Feb 2015 12:53:11 -0800 Subject: [PATCH] OS bug 1704585: WoW64 breakpoint in crossgen!debugError when compiling ARMCHK Remove call to DebugBreak when crossgen encounters a case not supported by MDIL. Such scenarios are expected in production. Also fixed an uninitialized field in ZapperOptions, which caused some warnings from crossgen to be lost. [tfs-changeset: 1418191] --- src/zap/zapper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/zap/zapper.cpp b/src/zap/zapper.cpp index c7242bd..d73a4c6 100644 --- a/src/zap/zapper.cpp +++ b/src/zap/zapper.cpp @@ -437,6 +437,7 @@ ZapperOptions::ZapperOptions() : m_fPartialNGen(false), m_fPartialNGenSet(false), m_fNGenLastRetry(false), + m_legacyMode(false), #ifdef FEATURE_CORECLR m_fNoMetaData(s_fNGenNoMetaData), #endif -- 2.7.4