summaryrefslogtreecommitdiff
path: root/src/zap/zapimage.cpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-11-20 10:56:12 -0800
committerGitHub <noreply@github.com>2018-11-20 10:56:12 -0800
commitcc5df16d722aa9ffed9f8e4f236a5077753f8ca0 (patch)
tree81ee1eb099b1bf0fee069d624f6f12dea71583b3 /src/zap/zapimage.cpp
parentbaee9b6c7c666a33e3f924a05a5f56eae134fe46 (diff)
downloadcoreclr-cc5df16d722aa9ffed9f8e4f236a5077753f8ca0.tar.gz
coreclr-cc5df16d722aa9ffed9f8e4f236a5077753f8ca0.tar.bz2
coreclr-cc5df16d722aa9ffed9f8e4f236a5077753f8ca0.zip
Delete CORCOMPILE_IMPORT_TABLE_ENTRY (#21109)
Diffstat (limited to 'src/zap/zapimage.cpp')
-rw-r--r--src/zap/zapimage.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/zap/zapimage.cpp b/src/zap/zapimage.cpp
index 073367d269..7dce3af285 100644
--- a/src/zap/zapimage.cpp
+++ b/src/zap/zapimage.cpp
@@ -149,7 +149,6 @@ void ZapImage::InitializeSections()
m_pStubDispatchDataSection->Place(m_pStubDispatchDataTable);
m_pImportTable = new (GetHeap()) ZapImportTable(this);
- m_pImportTableSection->Place(m_pImportTable);
m_pGCInfoTable = new (GetHeap()) ZapGCInfoTable(this);
m_pExceptionInfoLookupTable = new (GetHeap()) ZapExceptionInfoLookupTable(this);
@@ -229,7 +228,6 @@ void ZapImage::InitializeSectionsForReadyToRun()
}
m_pImportTable = new (GetHeap()) ZapImportTable(this);
- m_pImportTableSection->Place(m_pImportTable);
for (int i=0; i<ZapImportSectionType_Total; i++)
{
@@ -1166,8 +1164,6 @@ void ZapImage::PrintStats(LPCWSTR wszOutputFileName)
ACCUM_SIZE(m_stats->m_dynamicInfoDelayListSize, m_pDelayLoadInfoDelayListSectionHot);
ACCUM_SIZE(m_stats->m_dynamicInfoDelayListSize, m_pDelayLoadInfoDelayListSectionCold);
- ACCUM_SIZE(m_stats->m_importTableSize, m_pImportTable);
-
ACCUM_SIZE(m_stats->m_debuggingTableSize, m_pDebugSection);
ACCUM_SIZE(m_stats->m_headerSectionSize, m_pGCSection);
ACCUM_SIZE(m_stats->m_codeSectionSize, m_pHotCodeSection);