From bbf728edebe3ba724d49fa3aff525c59ebca7942 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 7 Aug 2005 20:02:04 +0000 Subject: [PATCH] All stats are "Number of ..." git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22694 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/SimplifyLibCalls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/IPO/SimplifyLibCalls.cpp b/lib/Transforms/IPO/SimplifyLibCalls.cpp index 99675b3cb35..b8337d6f250 100644 --- a/lib/Transforms/IPO/SimplifyLibCalls.cpp +++ b/lib/Transforms/IPO/SimplifyLibCalls.cpp @@ -36,7 +36,7 @@ namespace { /// This statistic keeps track of the total number of library calls that have /// been simplified regardless of which call it is. Statistic<> SimplifiedLibCalls("simplify-libcalls", - "Total number of library calls simplified"); + "Number of library calls simplified"); // Forward declarations class LibCallOptimization;