summaryrefslogtreecommitdiffstats
path: root/llvm/tools/sancov/sancov.cc
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/tools/sancov/sancov.cc')
-rw-r--r--llvm/tools/sancov/sancov.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/tools/sancov/sancov.cc b/llvm/tools/sancov/sancov.cc
index 3871c17b33a..0baaae16cfe 100644
--- a/llvm/tools/sancov/sancov.cc
+++ b/llvm/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;
}
OpenPOWER on IntegriCloud