summaryrefslogtreecommitdiff
path: root/src/md/enc/metamodelrw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/md/enc/metamodelrw.cpp')
-rw-r--r--src/md/enc/metamodelrw.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/md/enc/metamodelrw.cpp b/src/md/enc/metamodelrw.cpp
index f9002b6fa9..6a3bc327ef 100644
--- a/src/md/enc/metamodelrw.cpp
+++ b/src/md/enc/metamodelrw.cpp
@@ -4317,11 +4317,6 @@ CMiniMdRW::SaveHotPoolsToStream(
UINT32 *pnPoolDirSize,
UINT32 *pnHeapsSavedSize)
{
-// @todo: Triton workaround: FEATURE_METADATA_STANDALNE_WINRT_RO is supposed to disable FEATURE_PREJIT - remove this #if once we figure out how to get that working in the CoreClr build.
-#ifdef FEATURE_METADATA_STANDALONE_WINRT_RO
- _ASSERTE(!"SaveHotPoolsToStream: This method not supported in RoMetadata.dll");
- return E_NOTIMPL;
-#else // FEATURE_METADATA_STANDALONE_WINRT_RO
HRESULT hr = S_OK;
UINT32 rgHeapSavedSize[MDPoolCount] = { 0, 0, 0, 0 };
@@ -4393,7 +4388,6 @@ CMiniMdRW::SaveHotPoolsToStream(
}
return S_OK;
-#endif //FEATURE_METADATA_STANDALONE_WINRT_RO
} // CMiniMdRW::SaveHotPoolsToStream
// write hot data of specific blob
@@ -4406,11 +4400,6 @@ CMiniMdRW::SaveHotPoolToStream(
MetaData::HotHeapWriter *pHotHeapWriter,
UINT32 *pnSavedSize)
{
-// @todo: Triton workaround: FEATURE_METADATA_STANDALNE_WINRT_RO is supposed to disable FEATURE_PREJIT - remove this #if once we figure out how to get that working in the CoreClr build.
-#ifdef FEATURE_METADATA_STANDALONE_WINRT_RO
- _ASSERTE(!"SaveHotPoolToStream: This method not supported in RoMetadata.dll");
- return E_NOTIMPL;
-#else //FEATURE_METADATA_STANDALONE_WINRT_RO
_ASSERTE(pProfileData != NULL);
@@ -4435,7 +4424,6 @@ CMiniMdRW::SaveHotPoolToStream(
}
return S_OK;
-#endif // FEATURE_METADATA_STANDALONE_WINRT_RO
} // CMiniMdRW::SaveHotPoolToStream
#endif //FEATURE_PREJIT
@@ -8228,19 +8216,6 @@ CMiniMdRW::ResetENCLog()
// Get the module record.
IfFailGo(GetModuleRecord(1, &pMod));
-#ifndef FEATURE_CORECLR
- if (CLRConfig::GetConfigValue(CLRConfig::INTERNAL_MD_UseMinimalDeltas))
- { // Update the ENC Guids
- GUID encid;
- // Copy EncId as BaseId.
- ULONG uVal = GetCol(TBL_Module, ModuleRec::COL_EncId, pMod);
- IfFailGo(PutCol(TBL_Module, ModuleRec::COL_EncBaseId, pMod, uVal));
-
- // Allocate a new GUID for EncId.
- IfFailGo(CoCreateGuid(&encid));
- IfFailGo(PutGuid(TBL_Module, ModuleRec::COL_EncId, pMod, encid));
- }
-#endif //!FEATURE_CORECLR
// Reset the pool deltas
m_StringHeap.StartNewEnCSession();