summaryrefslogtreecommitdiff
path: root/src/jit/emitarm.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/emitarm.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/emitarm.h')
-rw-r--r--src/jit/emitarm.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/jit/emitarm.h b/src/jit/emitarm.h
index 8ad1268310..4ec189385c 100644
--- a/src/jit/emitarm.h
+++ b/src/jit/emitarm.h
@@ -10,10 +10,8 @@
struct CnsVal
{
- int cnsVal;
-#ifdef RELOC_SUPPORT
+ int cnsVal;
bool cnsReloc;
-#endif
};
insSize emitInsSize(insFormat insFmt);