From b5f62ceff2690023b1c64dd6d5a3e21a223a2ef2 Mon Sep 17 00:00:00 2001 From: Mike Aizatsky Date: Thu, 24 Mar 2016 21:49:55 +0000 Subject: [sancov] renaming statistics fields. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264349 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/sancov/sancov.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/sancov') diff --git a/tools/sancov/sancov.cc b/tools/sancov/sancov.cc index 3871c17b33a..0baaae16cfe 100644 --- a/tools/sancov/sancov.cc +++ b/tools/sancov/sancov.cc @@ -543,10 +543,10 @@ struct CoverageStats { }; static raw_ostream &operator<<(raw_ostream &OS, const CoverageStats &Stats) { - OS << "all-points: " << Stats.AllPoints << "\n"; - OS << "cov-points: " << Stats.CovPoints << "\n"; - OS << "all-fns: " << Stats.AllFns << "\n"; - OS << "cov-fns: " << Stats.CovFns << "\n"; + OS << "all-edges: " << Stats.AllPoints << "\n"; + OS << "cov-edges: " << Stats.CovPoints << "\n"; + OS << "all-functions: " << Stats.AllFns << "\n"; + OS << "cov-functions: " << Stats.CovFns << "\n"; return OS; } -- cgit v1.2.3