Skip to content

Commit 7d83dea

Browse files
committed
restore spacing
1 parent 58ac965 commit 7d83dea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/coreclr/gc/gc.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -51569,8 +51569,8 @@ bool CFinalize::MergeFinalizationData (CFinalize* other_fq)
5156951569
size_t thisSize = thisLimit - thisIndex;
5157051570
size_t otherSize = otherLimit - otherIndex;
5157151571

51572-
memmove (&newArray[thisIndex + otherIndex], &m_Array[thisIndex ], sizeof(newArray[0]) * thisSize);
51573-
memmove (&newArray[thisLimit + otherIndex], &other_fq->m_Array[otherIndex], sizeof(newArray[0]) * otherSize);
51572+
memmove (&newArray[thisIndex + otherIndex], &m_Array[thisIndex ], sizeof(newArray[0])*thisSize );
51573+
memmove (&newArray[thisLimit + otherIndex], &other_fq->m_Array[otherIndex], sizeof(newArray[0])*otherSize);
5157451574
}
5157551575

5157651576
// copy the finalization data from this and the other finalize queue
@@ -51585,8 +51585,8 @@ bool CFinalize::MergeFinalizationData (CFinalize* other_fq)
5158551585
size_t thisSize = thisIndexFromEnd - thisLimitFromEnd;
5158651586
size_t otherSize = otherIndexFromEnd - otherLimitFromEnd;
5158751587

51588-
memmove (&newArray[thisArraySize + growthCount - thisIndexFromEnd - otherIndexFromEnd], m_EndArray - thisIndexFromEnd, sizeof(newArray[0]) * thisSize);
51589-
memmove (&newArray[thisArraySize + growthCount - thisLimitFromEnd - otherIndexFromEnd], other_fq->m_EndArray - otherIndexFromEnd, sizeof(newArray[0]) * otherSize);
51588+
memmove (&newArray[thisArraySize + growthCount - thisIndexFromEnd - otherIndexFromEnd], m_EndArray - thisIndexFromEnd, sizeof(newArray[0])*thisSize );
51589+
memmove (&newArray[thisArraySize + growthCount - thisLimitFromEnd - otherIndexFromEnd], other_fq->m_EndArray - otherIndexFromEnd, sizeof(newArray[0])*otherSize);
5159051590
}
5159151591

5159251592
// adjust the m_FillPointers to reflect the sum of both queues on this queue,

0 commit comments

Comments
 (0)