summaryrefslogtreecommitdiff
path: root/src/vm/eetwain.cpp
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-01-24 18:36:30 +0900
committerJan Vorlicek <janvorli@microsoft.com>2017-01-24 10:36:30 +0100
commite50a9fe953e4dbbca67df9f9d0abe7bc2ba6d301 (patch)
tree51a967fa889a1003a7f89c0fa82af720f076d6b9 /src/vm/eetwain.cpp
parenta3d3e5a97bc4d0e59b094cbab32786f95225b357 (diff)
downloadcoreclr-e50a9fe953e4dbbca67df9f9d0abe7bc2ba6d301.tar.gz
coreclr-e50a9fe953e4dbbca67df9f9d0abe7bc2ba6d301.tar.bz2
coreclr-e50a9fe953e4dbbca67df9f9d0abe7bc2ba6d301.zip
Clean up #else in EECodeManager::FixContext (#9048)
* Clean up #else in EECodeManager::FixContext * Remove FixContext decl from EECodeManager
Diffstat (limited to 'src/vm/eetwain.cpp')
-rw-r--r--src/vm/eetwain.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/vm/eetwain.cpp b/src/vm/eetwain.cpp
index 55413f6614..de656055b5 100644
--- a/src/vm/eetwain.cpp
+++ b/src/vm/eetwain.cpp
@@ -693,6 +693,7 @@ inline size_t GetSizeOfFrameHeaderForEnC(hdrInfo * info)
#endif // !USE_GC_INFO_DECODER
#ifndef DACCESS_COMPILE
+#ifndef WIN64EXCEPTIONS
/*****************************************************************************
*
@@ -718,8 +719,6 @@ void EECodeManager::FixContext( ContextType ctxType,
_ASSERTE((ctxType == FINALLY_CONTEXT) == (thrownObject == NULL));
-#ifdef _TARGET_X86_
-
_ASSERTE(sizeof(CodeManStateBuf) <= sizeof(pState->stateBuf));
CodeManStateBuf * stateBuf = (CodeManStateBuf*)pState->stateBuf;
@@ -773,12 +772,10 @@ void EECodeManager::FixContext( ContextType ctxType,
*/
*((OBJECTREF*)&(ctx->Eax)) = thrownObject;
-
-#else // !_TARGET_X86_
- _ASSERTE(!"@NYI - EECodeManager::FixContext (EETwain.cpp)");
-#endif // _TARGET_X86_
}
+#endif // !WIN64EXCEPTIONS
+