[cfe-commits] r170907 - /cfe/trunk/lib/Analysis/CallGraph.cpp

Anna Zaks ganna at apple.com
Fri Dec 21 09:27:04 PST 2012


Author: zaks
Date: Fri Dec 21 11:27:04 2012
New Revision: 170907

URL: http://llvm.org/viewvc/llvm-project?rev=170907&view=rev
Log:
[analyzer] Fix typos.

Modified:
    cfe/trunk/lib/Analysis/CallGraph.cpp

Modified: cfe/trunk/lib/Analysis/CallGraph.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CallGraph.cpp?rev=170907&r1=170906&r2=170907&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CallGraph.cpp (original)
+++ cfe/trunk/lib/Analysis/CallGraph.cpp Fri Dec 21 11:27:04 2012
@@ -22,7 +22,7 @@
 
 using namespace clang;
 
-STATISTIC(NumObjCCallEdges, "Number of objective C call edges");
+STATISTIC(NumObjCCallEdges, "Number of Objective-C method call edges");
 STATISTIC(NumBlockCallEdges, "Number of block call edges");
 
 namespace {
@@ -69,7 +69,7 @@
     if (ObjCInterfaceDecl *IDecl = ME->getReceiverInterface()) {
       Selector Sel = ME->getSelector();
       
-      // Fild the callee definition within the same translation unit.
+      // Find the callee definition within the same translation unit.
       Decl *D = 0;
       if (ME->isInstanceMessage())
         D = IDecl->lookupPrivateMethod(Sel);





More information about the cfe-commits mailing list