aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CFRefCount.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2010-01-11 20:15:06 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2010-01-11 20:15:06 +0000
commitc027e54d669b8217a4c466f83aebee1a7c2c2e63 (patch)
tree846fc255c60aa638b4c6e841003966a13af6339b /lib/Analysis/CFRefCount.cpp
parent6f41c17ae854c8a26126e5ea1c3cd53bd746b7ba (diff)
Fix pasto.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@93181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r--lib/Analysis/CFRefCount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index df248b2653..5a15fbfb1f 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -1376,7 +1376,7 @@ RetainSummary* RetainSummaryManager::getSummary(FunctionDecl* FD) {
StrInStrNoCase(FName, "AddValue") != StringRef::npos ||
StrInStrNoCase(FName, "SetValue") != StringRef::npos ||
StrInStrNoCase(FName, "AppendValue") != StringRef::npos||
- StrInStrNoCase(FName, "SetAttribute")) != StringRef::npos
+ StrInStrNoCase(FName, "SetAttribute") != StringRef::npos)
? MayEscape : DoNothing;
S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, E);