Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-09-07 00:18:09 +0300
committerGitHub <noreply@github.com>2017-09-07 00:18:09 +0300
commit7decd3c66126374f7bd2e83d79c09f80684328e4 (patch)
tree1fa7a120d6909ca2570e0108e504adc68198901a /src/Native
parent07c890a62299d16f4110181be6d51c3a29c873d8 (diff)
Disable USE_GROWABLE_FUNCTION_TABLE for now (#4446)
The growable function tables do not exist on Windows 7. Fixes #4401.
Diffstat (limited to 'src/Native')
-rw-r--r--src/Native/jitinterface/JITCodeManager.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Native/jitinterface/JITCodeManager.h b/src/Native/jitinterface/JITCodeManager.h
index e763af48a..294a48016 100644
--- a/src/Native/jitinterface/JITCodeManager.h
+++ b/src/Native/jitinterface/JITCodeManager.h
@@ -95,9 +95,10 @@ public:
typedef DPTR(RUNTIME_FUNCTION) PTR_RUNTIME_FUNCTION;
-#ifdef _TARGET_AMD64_
-#define USE_GROWABLE_FUNCTION_TABLE 1
-#endif
+// TODO: Not compatible with Windows 7
+// #ifdef _TARGET_AMD64_
+// #define USE_GROWABLE_FUNCTION_TABLE 1
+// #endif
class CodeHeader
{