summaryrefslogtreecommitdiff
path: root/src/inc
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/inc
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/inc')
-rw-r--r--src/inc/eetwain.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inc/eetwain.h b/src/inc/eetwain.h
index 1eed18b964..49ea207ed3 100644
--- a/src/inc/eetwain.h
+++ b/src/inc/eetwain.h
@@ -161,7 +161,7 @@ enum
};
#ifndef DACCESS_COMPILE
-
+#ifndef WIN64EXCEPTIONS
virtual void FixContext(ContextType ctxType,
EHContext *ctx,
EECodeInfo *pCodeInfo,
@@ -171,7 +171,7 @@ virtual void FixContext(ContextType ctxType,
CodeManState *pState,
size_t ** ppShadowSP, // OUT
size_t ** ppEndRegion) = 0; // OUT
-
+#endif // !WIN64EXCEPTIONS
#endif // #ifndef DACCESS_COMPILE
#ifdef _TARGET_X86_
@@ -372,7 +372,7 @@ public:
#ifndef DACCESS_COMPILE
-
+#ifndef WIN64EXCEPTIONS
/*
Last chance for the runtime support to do fixups in the context
before execution continues inside a filter, catch handler, or finally
@@ -387,7 +387,7 @@ void FixContext(ContextType ctxType,
CodeManState *pState,
size_t ** ppShadowSP, // OUT
size_t ** ppEndRegion); // OUT
-
+#endif // !WIN64EXCEPTIONS
#endif // #ifndef DACCESS_COMPILE
#ifdef _TARGET_X86_