summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/CallGraph.cpp
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2012-12-21 17:27:04 +0000
committerAnna Zaks <ganna@apple.com>2012-12-21 17:27:04 +0000
commit4127750ed82d60c7db97a5d9d396c796434ab2e5 (patch)
tree1a204d1874eb1e15d6583c0d70947a50f6d399f2 /clang/lib/Analysis/CallGraph.cpp
parent1ee76c1baee3dac926c5100c1ecded466273852b (diff)
downloadbcm5719-llvm-4127750ed82d60c7db97a5d9d396c796434ab2e5.tar.gz
bcm5719-llvm-4127750ed82d60c7db97a5d9d396c796434ab2e5.zip
[analyzer] Fix typos.
llvm-svn: 170907
Diffstat (limited to 'clang/lib/Analysis/CallGraph.cpp')
-rw-r--r--clang/lib/Analysis/CallGraph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/CallGraph.cpp b/clang/lib/Analysis/CallGraph.cpp
index 4082e2dc0ea..33870158b38 100644
--- a/clang/lib/Analysis/CallGraph.cpp
+++ b/clang/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);
OpenPOWER on IntegriCloud