File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -8256,8 +8256,10 @@ void JitTimer::PrintCsvHeader()
8256
8256
fprintf (s_csvFile, " \" Loops\" ," );
8257
8257
fprintf (s_csvFile, " \" Loops Cloned\" ," );
8258
8258
#if FEATURE_LOOP_ALIGN
8259
+ #ifdef DEBUG
8259
8260
fprintf (s_csvFile, " \" Alignment Candidates\" ," );
8260
8261
fprintf (s_csvFile, " \" Loops Aligned\" ," );
8262
+ #endif // DEBUG
8261
8263
#endif // FEATURE_LOOP_ALIGN
8262
8264
for (int i = 0 ; i < PHASE_NUMBER_OF; i++)
8263
8265
{
@@ -8333,8 +8335,10 @@ void JitTimer::PrintCsvMethodStats(Compiler* comp)
8333
8335
fprintf (s_csvFile, " %u," , comp->optLoopCount );
8334
8336
fprintf (s_csvFile, " %u," , comp->optLoopsCloned );
8335
8337
#if FEATURE_LOOP_ALIGN
8338
+ #ifdef DEBUG
8336
8339
fprintf (s_csvFile, " %u," , comp->loopAlignCandidates );
8337
8340
fprintf (s_csvFile, " %u," , comp->loopsAligned );
8341
+ #endif // DEBUG
8338
8342
#endif // FEATURE_LOOP_ALIGN
8339
8343
unsigned __int64 totCycles = 0 ;
8340
8344
for (int i = 0 ; i < PHASE_NUMBER_OF; i++)
You can’t perform that action at this time.
0 commit comments