[objc-arc] Fixed a spelling error and made the statistic descriptions be consistent about their usage of periods.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181901 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Gottesman 2013-05-15 17:43:03 +00:00
parent df6e5fb77c
commit c292e68d43

View File

@ -340,18 +340,18 @@ STATISTIC(NumNoops, "Number of no-op objc calls eliminated");
STATISTIC(NumPartialNoops, "Number of partially no-op objc calls eliminated"); STATISTIC(NumPartialNoops, "Number of partially no-op objc calls eliminated");
STATISTIC(NumAutoreleases,"Number of autoreleases converted to releases"); STATISTIC(NumAutoreleases,"Number of autoreleases converted to releases");
STATISTIC(NumRets, "Number of return value forwarding " STATISTIC(NumRets, "Number of return value forwarding "
"retain+autoreleaes eliminated"); "retain+autoreleases eliminated");
STATISTIC(NumRRs, "Number of retain+release paths eliminated"); STATISTIC(NumRRs, "Number of retain+release paths eliminated");
STATISTIC(NumPeeps, "Number of calls peephole-optimized"); STATISTIC(NumPeeps, "Number of calls peephole-optimized");
#ifndef NDEBUG #ifndef NDEBUG
STATISTIC(NumRetainsBeforeOpt, STATISTIC(NumRetainsBeforeOpt,
"Number of retains before optimization."); "Number of retains before optimization");
STATISTIC(NumReleasesBeforeOpt, STATISTIC(NumReleasesBeforeOpt,
"Number of releases before optimization."); "Number of releases before optimization");
STATISTIC(NumRetainsAfterOpt, STATISTIC(NumRetainsAfterOpt,
"Number of retains after optimization."); "Number of retains after optimization");
STATISTIC(NumReleasesAfterOpt, STATISTIC(NumReleasesAfterOpt,
"Number of releases after optimization."); "Number of releases after optimization");
#endif #endif
namespace { namespace {