Skip to content
Merged
Changes from all commits
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
9 changes: 1 addition & 8 deletions src/coreclr/vm/jitinterface.cpp
Original file line number Diff line number Diff line change
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