Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(409)

Unified Diff: lib/StaticAnalyzer/Core/ObjCMessage.cpp

Issue 4186056: Make SVals.h conform to the LLVM naming guide: methods should start with lowercase Base URL: https://llvm.org/svn/llvm-project/cfe/trunk/
Patch Set: Created 13 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/StaticAnalyzer/Core/GRState.cpp ('k') | lib/StaticAnalyzer/Core/RegionStore.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/StaticAnalyzer/Core/ObjCMessage.cpp
===================================================================
--- lib/StaticAnalyzer/Core/ObjCMessage.cpp (revision 125652)
+++ lib/StaticAnalyzer/Core/ObjCMessage.cpp (working copy)
@@ -93,7 +93,7 @@
assert(i < getNumArgs());
if (CallE) return State->getSValAsScalarOrLoc(CallE->getArg(i));
QualType argT = Msg.getArgType(i);
- if (Loc::IsLocType(argT) || argT->isIntegerType())
+ if (Loc::isLocType(argT) || argT->isIntegerType())
return Msg.getArgSVal(i, State);
return UnknownVal();
}
« no previous file with comments | « lib/StaticAnalyzer/Core/GRState.cpp ('k') | lib/StaticAnalyzer/Core/RegionStore.cpp » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b