summaryrefslogtreecommitdiffstats
path: root/lib/Analysis/CheckObjCUnusedIVars.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix: <rdar://problem/7075531> static analyzer wrongly detects unused ivars us...Ted Kremenek2009-08-071-2/+8
* Constify some pointers. No functionality change.Ted Kremenek2009-08-071-15/+16
* remove dead code.Zhongxing Xu2009-06-301-3/+0
* De-ASTContext-ify DeclContext.Argyrios Kyrtzidis2009-06-301-4/+4
* Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis2009-06-301-1/+1
* Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis2009-06-301-1/+1
* Remove uses of std::ostream from libAnalysis.Ted Kremenek2009-06-241-3/+2
* Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor2009-06-181-1/+1
* Eliminate the three SmallVectors in ObjCImplDecl (for instanceDouglas Gregor2009-04-231-6/+7
* FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor2009-04-181-1/+1
* More title-casing of bug type names.Ted Kremenek2009-04-021-1/+1
* Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of Chris Lattner2008-11-241-2/+2
* The "unused ivar" check now has a category: "Optimization"Ted Kremenek2008-09-211-1/+1
* Have the UnusedIvar check skip ivars with setters/getters created by @synthes...Ted Kremenek2008-07-251-4/+26
* Properly skip IBOutlets when checking for unused ivars.Ted Kremenek2008-07-231-4/+6
* Ivar access mode ObjCIvarDecl::None == ObjCIvarDecl::Protected, not private.Ted Kremenek2008-07-231-2/+1
* Add prototype implementation of unused ivar check.Ted Kremenek2008-07-231-0/+87