Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed leaked debug logging. (#92610)
  • Loading branch information
ivdiazsa committed Sep 25, 2023
1 parent 89f6743 commit 334bb42
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/coreclr/vm/jitinterface.cpp
Expand Up @@ -140,14 +140,7 @@ FCIMPLEND
FCIMPL1(INT64, GetCompiledMethodCount, CLR_BOOL currentThread)
{
FCALL_CONTRACT;
// WIP-DEBUG-ONLY change: Windows is causing problems in the CI, but can't
// be replicated locally. Using this for some logging there to try to figure
// it out.
printf("\nENTERING GETCOMPILEDMETHODCOUNT:");
printf("%d\n", currentThread ? 1 : 0);
printf("%ld\n", (long) t_cMethodsJittedForThread);
printf("%ld\n", (long) AtomicLoad64WithoutTearing(&g_cMethodsJitted));
printf(":EXITING GETCOMPILEDMETHODCOUNT\n");

return currentThread ? t_cMethodsJittedForThread : AtomicLoad64WithoutTearing(&g_cMethodsJitted);
}
FCIMPLEND
Expand Down

0 comments on commit 334bb42

Please sign in to comment.