From 69071d86fcce4f8ce8a57ab013a31c06954cbe40 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Fri, 17 Jun 2016 16:28:57 +0200 Subject: Change PRED_LOOP_EXIT from 92 to 85. * analyze_brprob.py: Fix columns of script output. * predict.def: PRED_LOOP_EXIT from 92 to 85. * gcc.dg/predict-9.c: Fix dump scanning. From-SVN: r237556 --- contrib/analyze_brprob.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/analyze_brprob.py') diff --git a/contrib/analyze_brprob.py b/contrib/analyze_brprob.py index 9808c46..2526623 100755 --- a/contrib/analyze_brprob.py +++ b/contrib/analyze_brprob.py @@ -119,10 +119,10 @@ class Profile: elif sorting == 'coverage': sorter = lambda x: x[1].count - print('%-36s %8s %6s %-16s %14s %8s %6s' % ('HEURISTICS', 'BRANCHES', '(REL)', + print('%-40s %8s %6s %-16s %14s %8s %6s' % ('HEURISTICS', 'BRANCHES', '(REL)', 'HITRATE', 'COVERAGE', 'COVERAGE', '(REL)')) for (k, v) in sorted(self.heuristics.items(), key = sorter): - print('%-36s %8i %5.1f%% %6.2f%% / %6.2f%% %14i %8s %5.1f%%' % + print('%-40s %8i %5.1f%% %6.2f%% / %6.2f%% %14i %8s %5.1f%%' % (k, v.branches, percentage(v.branches, self.branches_max ()), percentage(v.hits, v.count), percentage(v.fits, v.count), v.count, v.count_formatted(), percentage(v.count, self.count_max()) )) -- cgit v1.1