Skip to content

Commit a7fb6b9

Browse files
kotlarmilosCopilot
andcommitted
Rename IsStrippedILBodies to HasStrippedILBodies
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 41dd8e6 commit a7fb6b9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/coreclr/vm/ceeload.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3585,7 +3585,7 @@ void Module::RunEagerFixupsUnlocked()
35853585
GetReadyToRunInfo()->DisableAllR2RCode();
35863586

35873587
#ifndef FEATURE_DYNAMIC_CODE_COMPILED
3588-
if (GetReadyToRunInfo()->IsStrippedILBodies())
3588+
if (GetReadyToRunInfo()->HasStrippedILBodies())
35893589
{
35903590
EEPOLICY_HANDLE_FATAL_ERROR_WITH_MESSAGE(COR_E_EXECUTIONENGINE,
35913591
W("ReadyToRun code was disabled by a failed eager fixup, but the image has stripped IL bodies and this runtime has no JIT fallback."));

src/coreclr/vm/readytoruninfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ class ReadyToRunInfo
249249
return m_pHeader->CoreHeader.Flags & READYTORUN_FLAG_PARTIAL;
250250
}
251251

252-
BOOL IsStrippedILBodies()
252+
BOOL HasStrippedILBodies()
253253
{
254254
LIMITED_METHOD_CONTRACT;
255255
return m_pHeader->CoreHeader.Flags & READYTORUN_FLAG_STRIPPED_IL_BODIES;

0 commit comments

Comments
 (0)