summaryrefslogtreecommitdiff
path: root/src/debug/daccess/dacdbiimpl.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/debug/daccess/dacdbiimpl.cpp
parent2215a4e81c0d4f10edf9ff440c51b240586865e1 (diff)
downloadcoreclr-9c93286cb13d9f50f1f25cdcbcbc3719a178b374.tar.gz
coreclr-9c93286cb13d9f50f1f25cdcbcbc3719a178b374.tar.bz2
coreclr-9c93286cb13d9f50f1f25cdcbcbc3719a178b374.zip
Remove always defined FEATURE_EXCEPTIONDISPATCHINFO
Diffstat (limited to 'src/debug/daccess/dacdbiimpl.cpp')
-rw-r--r--src/debug/daccess/dacdbiimpl.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/debug/daccess/dacdbiimpl.cpp b/src/debug/daccess/dacdbiimpl.cpp
index 7c5ab14a7e..0ac5dc04ea 100644
--- a/src/debug/daccess/dacdbiimpl.cpp
+++ b/src/debug/daccess/dacdbiimpl.cpp
@@ -3470,12 +3470,7 @@ void DacDbiInterfaceImpl::GetStackFramesFromException(VMPTR_Object vmObject, Dac
currentFrame.vmDomainFile.SetHostPtr(pDomainFile);
currentFrame.ip = currentElement.ip;
currentFrame.methodDef = currentElement.pFunc->GetMemberDef();
-#if defined(FEATURE_EXCEPTIONDISPATCHINFO)
currentFrame.isLastForeignExceptionFrame = currentElement.fIsLastFrameFromForeignStackTrace;
-#else
- // for CLRs lacking exception dispatch info just set it to 0
- currentFrame.isLastForeignExceptionFrame = 0;
-#endif
}
}
}