|
@@ -930,11 +930,10 @@ static void abs_printout(int cpu, int nr, struct perf_evsel *evsel, double avg)
|
|
|
|
|
|
if (perf_evsel__match(evsel, HARDWARE, HW_INSTRUCTIONS)) {
|
|
|
total = avg_stats(&runtime_cycles_stats[cpu]);
|
|
|
- if (total)
|
|
|
+ if (total) {
|
|
|
ratio = avg / total;
|
|
|
-
|
|
|
- fprintf(output, " # %5.2f insns per cycle ", ratio);
|
|
|
-
|
|
|
+ fprintf(output, " # %5.2f insns per cycle ", ratio);
|
|
|
+ }
|
|
|
total = avg_stats(&runtime_stalled_cycles_front_stats[cpu]);
|
|
|
total = max(total, avg_stats(&runtime_stalled_cycles_back_stats[cpu]));
|
|
|
|