diff options
| -rw-r--r-- | tools/perf/builtin-stat.c | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c index ce2266c5cd52..fb02b53b0e3d 100644 --- a/tools/perf/builtin-stat.c +++ b/tools/perf/builtin-stat.c @@ -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])); | 
