summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-04-03 16:59:35 -0700
committerBruce Forstall <brucefo@microsoft.com>2017-04-03 16:59:35 -0700
commitb9fd50477279cca8badc453dde294661693a111c (patch)
treeb7494b3ca2363f882f574f818cb450f22f660dfa /src
parent654c340d62a48c424d26d034a40bd360670320c0 (diff)
downloadcoreclr-b9fd50477279cca8badc453dde294661693a111c.tar.gz
coreclr-b9fd50477279cca8badc453dde294661693a111c.tar.bz2
coreclr-b9fd50477279cca8badc453dde294661693a111c.zip
Remove unused code under typo define
The code is under COR_JIT_EE_VER which never existed (it used to be COR_JIT_EE_VERSION), thus the code has never been used.
Diffstat (limited to 'src')
-rw-r--r--src/jit/jit.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/jit/jit.h b/src/jit/jit.h
index 916b6802d7..cec24a9b3f 100644
--- a/src/jit/jit.h
+++ b/src/jit/jit.h
@@ -248,23 +248,6 @@
#define __PLACEMENT_NEW_INLINE // don't bring in the global placement new, it is easy to make a mistake
// with our new(compiler*) pattern.
-#if COR_JIT_EE_VER > 460
-#define NO_CLRCONFIG // Don't bring in the usual CLRConfig infrastructure, since the JIT uses the JIT/EE
- // interface to retrieve config values.
-
-// This is needed for contract.inl when FEATURE_STACK_PROBE is enabled.
-struct CLRConfig
-{
- static struct ConfigKey
- {
- } EXTERNAL_NO_SO_NOT_MAINLINE;
- static DWORD GetConfigValue(const ConfigKey& key)
- {
- return 0;
- }
-};
-#endif
-
#include "utilcode.h" // this defines assert as _ASSERTE
#include "host.h" // this redefines assert for the JIT to use assertAbort
#include "utils.h"