File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- //
1
+ //
2
2
// Copyright (c) .NET Foundation and Contributors
3
3
// Portions Copyright (c) Microsoft Corporation. All rights reserved.
4
4
// See LICENSE file in the project root for full license information.
@@ -181,8 +181,8 @@ HRESULT CLR_RT_ExecutionEngine::AllocateHeaps()
181
181
CLR_Debug::Printf (" Heap Cluster information\r\n " );
182
182
183
183
#ifdef _WIN64
184
- CLR_Debug::Printf (" Start: 0x%" PRIx64 " \r\n " , ( uint64_t ) heapFirstFree);
185
- CLR_Debug::Printf (" Free: 0x%" PRIx64 " \r\n " , ( uint64_t ) heapFree);
184
+ CLR_Debug::Printf (" Start: 0x%" PRIx64 " \r\n " , heapFirstFree);
185
+ CLR_Debug::Printf (" Free: 0x%" PRIx64 " \r\n " , heapFree);
186
186
CLR_Debug::Printf (" Block size: %d\r\n " , sizeof (struct CLR_RT_HeapBlock ));
187
187
#else
188
188
CLR_Debug::Printf (" Start: %08x\r\n " , (size_t )heapFirstFree);
@@ -421,6 +421,7 @@ CLR_UINT32 CLR_RT_ExecutionEngine::PerformGarbageCollection()
421
421
void CLR_RT_ExecutionEngine::PerformHeapCompaction ()
422
422
{
423
423
NATIVE_PROFILE_CLR_CORE ();
424
+
424
425
if (CLR_EE_DBG_IS (NoCompaction))
425
426
return ;
426
427
You can’t perform that action at this time.
0 commit comments