summaryrefslogtreecommitdiff
path: root/src/zap/zapinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zap/zapinfo.cpp')
-rw-r--r--src/zap/zapinfo.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/zap/zapinfo.cpp b/src/zap/zapinfo.cpp
index f1399b3d4d..4f06d94615 100644
--- a/src/zap/zapinfo.cpp
+++ b/src/zap/zapinfo.cpp
@@ -448,25 +448,6 @@ void ZapInfo::CompileMethod()
}
#endif
- if (!m_jitFlags.IsSet(CORJIT_FLAGS::CORJIT_FLAG_SKIP_VERIFICATION))
- {
- BOOL raiseVerificationException, unverifiableGenericCode;
-
- m_jitFlags = GetCompileFlagsIfGenericInstantiation(
- m_currentMethodHandle,
- m_jitFlags,
- this,
- &raiseVerificationException,
- &unverifiableGenericCode);
-
- // Instead of raising a VerificationException, we will leave the method
- // uncompiled. If it gets called at runtime, we will raise the
- // VerificationException at that time while trying to compile the method.
- if (raiseVerificationException)
- return;
- }
-
-
if (m_pImage->m_stats)
{
m_pImage->m_stats->m_methods++;