summaryrefslogtreecommitdiff
path: root/src/vm/exceptionhandling.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-09-07 15:22:40 -0700
committerGitHub <noreply@github.com>2018-09-07 15:22:40 -0700
commit41db7d9af54a0a7d9fc365849e7c0fc1dad3a4b9 (patch)
tree759aeca8c69087f63bc0cf70fd418ff4794dfbd2 /src/vm/exceptionhandling.h
parent8f6db6188d8ab4f05709a4e8c8de54b18f639ec7 (diff)
downloadcoreclr-41db7d9af54a0a7d9fc365849e7c0fc1dad3a4b9.tar.gz
coreclr-41db7d9af54a0a7d9fc365849e7c0fc1dad3a4b9.tar.bz2
coreclr-41db7d9af54a0a7d9fc365849e7c0fc1dad3a4b9.zip
Fixes towards making the runtime compiled without FEATURE_PREJIT defined (#19864)
Diffstat (limited to 'src/vm/exceptionhandling.h')
-rw-r--r--src/vm/exceptionhandling.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/exceptionhandling.h b/src/vm/exceptionhandling.h
index 27981e6c32..b678387ad4 100644
--- a/src/vm/exceptionhandling.h
+++ b/src/vm/exceptionhandling.h
@@ -10,17 +10,17 @@
#ifdef WIN64EXCEPTIONS
+#include "eexcp.h"
+#include "exstatecommon.h"
+
#if defined(_TARGET_ARM_) || defined(_TARGET_X86_)
#define USE_PER_FRAME_PINVOKE_INIT
#endif // _TARGET_ARM_ || _TARGET_X86_
-
// This address lies in the NULL pointer partition of the process memory.
// Accessing it will result in AV.
#define INVALID_RESUME_ADDRESS 0x000000000000bad0
-#include "exstatecommon.h"
-
EXTERN_C EXCEPTION_DISPOSITION
ProcessCLRException(IN PEXCEPTION_RECORD pExceptionRecord
WIN64_ARG(IN ULONG64 MemoryStackFp)