summaryrefslogtreecommitdiff
path: root/src/vm/jithelpers.cpp
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-02-12 10:46:48 -0800
committerdanmosemsft <danmose@microsoft.com>2017-02-12 16:55:37 -0800
commit9c93286cb13d9f50f1f25cdcbcbc3719a178b374 (patch)
treee20f044d2b9d9897dae6b9b59f7df2c758b7dbd9 /src/vm/jithelpers.cpp
parent2215a4e81c0d4f10edf9ff440c51b240586865e1 (diff)
downloadcoreclr-9c93286cb13d9f50f1f25cdcbcbc3719a178b374.tar.gz
coreclr-9c93286cb13d9f50f1f25cdcbcbc3719a178b374.tar.bz2
coreclr-9c93286cb13d9f50f1f25cdcbcbc3719a178b374.zip
Remove always defined FEATURE_EXCEPTIONDISPATCHINFO
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 c8c4ba647c..5dc83b12f5 100644
--- a/src/vm/jithelpers.cpp
+++ b/src/vm/jithelpers.cpp
@@ -5413,7 +5413,6 @@ HCIMPL1(void, IL_Throw, Object* obj)
EEPolicy::HandleOutOfMemory();
}
-#if defined(FEATURE_EXCEPTIONDISPATCHINFO)
// If the flag indicating ForeignExceptionRaise has been set,
// then do not clear the "_stackTrace" field of the exception object.
if (GetThread()->GetExceptionState()->IsRaisingForeignException())
@@ -5421,7 +5420,6 @@ HCIMPL1(void, IL_Throw, Object* obj)
((EXCEPTIONREF)oref)->SetStackTraceString(NULL);
}
else
-#endif // defined(FEATURE_EXCEPTIONDISPATCHINFO)
{
((EXCEPTIONREF)oref)->ClearStackTracePreservingRemoteStackTrace();
}