summaryrefslogtreecommitdiff
path: root/src/jit/compiler.h
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-04-07 14:18:26 -0700
committerBruce Forstall <brucefo@microsoft.com>2017-04-07 14:22:29 -0700
commit79064d73939dd28c320ac8dd848770d1406806bb (patch)
treedac6bbfe707ab019ca175b5519b44d892320c24d /src/jit/compiler.h
parent4371b15df7ae47d218ce283713d4e5ecb6fb4b71 (diff)
downloadcoreclr-79064d73939dd28c320ac8dd848770d1406806bb.tar.gz
coreclr-79064d73939dd28c320ac8dd848770d1406806bb.tar.bz2
coreclr-79064d73939dd28c320ac8dd848770d1406806bb.zip
Remove RELOC_SUPPORT define
It's always defined, is always expected to be defined, and the build doesn't work without it. Also remove unused `SECURITY_CHECK` and `VERIFY_IMPORTER` defines.
Diffstat (limited to 'src/jit/compiler.h')
-rw-r--r--src/jit/compiler.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/jit/compiler.h b/src/jit/compiler.h
index 4ec18a70a1..482ad496fa 100644
--- a/src/jit/compiler.h
+++ b/src/jit/compiler.h
@@ -7865,13 +7865,11 @@ public:
// (or)
// 3. When opts.compDbgEnC is true. (See also Compiler::compCompile).
//
-// When this flag is set, jit will allocate a gc-reference local variable (lvaSecurityObject),
-// which gets reported as a GC root to stackwalker.
-// (See also ICodeManager::GetAddrOfSecurityObject.)
+ // When this flag is set, jit will allocate a gc-reference local variable (lvaSecurityObject),
+ // which gets reported as a GC root to stackwalker.
+ // (See also ICodeManager::GetAddrOfSecurityObject.)
-#if RELOC_SUPPORT
bool compReloc;
-#endif
#ifdef DEBUG
#if defined(_TARGET_XARCH_) && !defined(LEGACY_BACKEND)