Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Formatting
  • Loading branch information
EgorBo committed Jul 30, 2022
commit 74ee89c045ef6c1b5660a8588387700e16bbaf85
2 changes: 1 addition & 1 deletion src/coreclr/gc/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44691,7 +44691,7 @@ bool GCHeap::IsEphemeral (Object* object)
{
uint8_t* o = (uint8_t*)object;
#if defined(FEATURE_BASICFREEZE) && defined(USE_REGIONS)
if (!is_in_heap_range(o))
if (!is_in_heap_range (o))
{
// Objects in frozen segments are not ephemeral
return FALSE;
Expand Down