summaryrefslogtreecommitdiff
path: root/src/zap/zapimage.cpp
diff options
context:
space:
mode:
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);