[cfe-commits] r93181 - /cfe/trunk/lib/Analysis/CFRefCount.cpp
Benjamin Kramer
benny.kra at googlemail.com
Mon Jan 11 12:15:06 PST 2010
Author: d0k
Date: Mon Jan 11 14:15:06 2010
New Revision: 93181
URL: http://llvm.org/viewvc/llvm-project?rev=93181&view=rev
Log:
Fix pasto.
Modified:
cfe/trunk/lib/Analysis/CFRefCount.cpp
Modified: cfe/trunk/lib/Analysis/CFRefCount.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CFRefCount.cpp?rev=93181&r1=93180&r2=93181&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CFRefCount.cpp (original)
+++ cfe/trunk/lib/Analysis/CFRefCount.cpp Mon Jan 11 14:15:06 2010
@@ -1376,7 +1376,7 @@
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);
More information about the cfe-commits
mailing list