From: Misha Brukman Date: Thu, 11 Sep 2003 16:58:31 +0000 (+0000) Subject: Apostrophes are only used for possession and quoting. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3cfb6b13c0e1d9dee0e35449aa1ac6bd8a0ee906;p=oota-llvm.git Apostrophes are only used for possession and quoting. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8473 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index d2a098c428d..8351674d397 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp @@ -26,8 +26,8 @@ #include "Support/StringExtras.h" namespace { - Statistic<> NumReplaced("scalarrepl", "Number of alloca's broken up"); - Statistic<> NumPromoted("scalarrepl", "Number of alloca's promoted"); + Statistic<> NumReplaced("scalarrepl", "Number of allocas broken up"); + Statistic<> NumPromoted("scalarrepl", "Number of allocas promoted"); struct SROA : public FunctionPass { bool runOnFunction(Function &F);