summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2012-04-05 02:10:19 +0000
committerAnna Zaks <ganna@apple.com>2012-04-05 02:10:19 +0000
commit67c83d247eb62aa96d9baeb2505803dcce6e7556 (patch)
treedc9d06bd5e2949e54fd847edd440889283605798
parent5720600798a53cee2eab8198db9ab8ff9a2e4e0a (diff)
downloadbcm5719-llvm-67c83d247eb62aa96d9baeb2505803dcce6e7556.tar.gz
bcm5719-llvm-67c83d247eb62aa96d9baeb2505803dcce6e7556.zip
[analyzer] Change warding in a path diagnostic:
"No method actually called because receiver is nil" -> "No method is called because receiver is nil" llvm-svn: 154077
-rw-r--r--clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp b/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
index 09a9b41eae2..65324868518 100644
--- a/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
+++ b/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
@@ -393,7 +393,7 @@ PathDiagnosticPiece *NilReceiverBRVisitor::VisitNode(const ExplodedNode *N,
// Issue a message saying that the method was skipped.
PathDiagnosticLocation L(Receiver, BRC.getSourceManager(),
N->getLocationContext());
- return new PathDiagnosticEventPiece(L, "No method actually called "
+ return new PathDiagnosticEventPiece(L, "No method is called "
"because the receiver is nil");
}
OpenPOWER on IntegriCloud