summaryrefslogtreecommitdiff
path: root/src/vm/domainfile.cpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-03-08 00:41:21 -0800
committerJan Kotas <jkotas@microsoft.com>2016-03-09 08:46:07 -0800
commit618e798e3ba00e8b95158fd1d7081ca91cc43bf5 (patch)
tree091b7e7719d83d7408d623c82a3deaeca96e67ed /src/vm/domainfile.cpp
parentb219fbbe1fe72b4a44b5247c9a77f9447d34b028 (diff)
downloadcoreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.tar.gz
coreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.tar.bz2
coreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.zip
Delete dead code
- Delete BINDER, STANDALONE_BINDER and MDIL ifdefs
Diffstat (limited to 'src/vm/domainfile.cpp')
-rw-r--r--src/vm/domainfile.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/vm/domainfile.cpp b/src/vm/domainfile.cpp
index 0c6e4fcdc1..5d2a95ffb2 100644
--- a/src/vm/domainfile.cpp
+++ b/src/vm/domainfile.cpp
@@ -3447,18 +3447,6 @@ void DomainAssembly::GetOptimizedIdentitySignature(CORCOMPILE_ASSEMBLY_SIGNATURE
PEImageLayoutHolder ilLayout(GetFile()->GetAnyILWithRef());
pSignature->timeStamp = ilLayout->GetTimeDateStamp();
pSignature->ilImageSize = ilLayout->GetVirtualSize();
-#ifdef MDIL
- if (g_fIsNGenEmbedILProcess)
- {
- PEImageHolder pILImage(GetFile()->GetILimage());
- DWORD dwActualILSize;
- if (pILImage->GetLoadedLayout()->GetILSizeFromMDILCLRCtlData(&dwActualILSize))
- {
- // Use actual source IL size instead of MDIL size
- pSignature->ilImageSize = dwActualILSize;
- }
- }
-#endif // MDIL
}
BOOL DomainAssembly::CheckZapDependencyIdentities(PEImage *pNativeImage)