summaryrefslogtreecommitdiff
path: root/src/vm/jithelpers.cpp
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-02-10 21:53:12 -0800
committerdanmosemsft <danmose@microsoft.com>2017-02-10 21:53:54 -0800
commitb0dab0d6de90a38dfbf0d6b2039a7b8f5269d802 (patch)
treeb34dd8b5235af7703faf31e847148b21c9b325bb /src/vm/jithelpers.cpp
parent52009b8919ba55690f21cdc8f04e012a53eb8ef4 (diff)
downloadcoreclr-b0dab0d6de90a38dfbf0d6b2039a7b8f5269d802.tar.gz
coreclr-b0dab0d6de90a38dfbf0d6b2039a7b8f5269d802.tar.bz2
coreclr-b0dab0d6de90a38dfbf0d6b2039a7b8f5269d802.zip
Remove always defined FEATURE_CORRUPTING_EXCEPTIONS
Diffstat (limited to 'src/vm/jithelpers.cpp')
-rw-r--r--src/vm/jithelpers.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/vm/jithelpers.cpp b/src/vm/jithelpers.cpp
index 6d4fd897c4..c1b306fdc3 100644
--- a/src/vm/jithelpers.cpp
+++ b/src/vm/jithelpers.cpp
@@ -5427,7 +5427,6 @@ HCIMPL1(void, IL_Throw, Object* obj)
}
}
-#ifdef FEATURE_CORRUPTING_EXCEPTIONS
if (!g_pConfig->LegacyCorruptedStateExceptionsPolicy())
{
// Within the VM, we could have thrown and caught a managed exception. This is done by
@@ -5442,7 +5441,6 @@ HCIMPL1(void, IL_Throw, Object* obj)
ThreadExceptionState *pExState = GetThread()->GetExceptionState();
pExState->SetLastActiveExceptionCorruptionSeverity(NotSet);
}
-#endif // FEATURE_CORRUPTING_EXCEPTIONS
RaiseTheExceptionInternalOnly(oref, FALSE);