diff options
author | Anna Zaks <ganna@apple.com> | 2012-12-21 17:27:04 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-12-21 17:27:04 +0000 |
commit | 08165d8c9e954574408de59988b3331be58c3b36 (patch) | |
tree | 578a77451ce98f214c9a7b1ecd24e1f692fdd804 /lib/Analysis/CallGraph.cpp | |
parent | bd80231672a7418aa1a99d3dbbe1774205c88f74 (diff) |
[analyzer] Fix typos.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170907 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CallGraph.cpp')
-rw-r--r-- | lib/Analysis/CallGraph.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/CallGraph.cpp b/lib/Analysis/CallGraph.cpp index 4082e2dc0e..33870158b3 100644 --- a/lib/Analysis/CallGraph.cpp +++ b/lib/Analysis/CallGraph.cpp @@ -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 @@ public: 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); |