aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-01-28 05:18:08 +0000
committerTed Kremenek <kremenek@apple.com>2009-01-28 05:18:08 +0000
commit103a185af4c1596a1642f732a37792a58059eced (patch)
treee9eda48584bbd1327399de05af9fa52c70d71cd8
parent5c1cd520dbca6d5476fb46414b7cf93d3a5afdf4 (diff)
Fix diagnostic truncated by my last patch.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63180 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/CFRefCount.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index a042b909e1..bbbe7646fd 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -2338,6 +2338,8 @@ PathDiagnosticPiece* CFRefReport::VisitNode(const ExplodedNode<GRState>* N,
os << "Call to function '" << FV->getDecl()->getNameAsString() <<'\'';
else
os << "function call";
+
+ os << " returns an object with a ";
}
else {
assert (isa<ObjCMessageExpr>(S));