aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DeadStores.cpp
AgeCommit message (Expand)Author
2008-07-22Rename file.Ted Kremenek
2008-07-15Distinguish between dead stores and dead initializations.Ted Kremenek
2008-07-14Refactor Dead Stores error reporting to use the simplified BugReporter::EmitB...Ted Kremenek
2008-07-03Have BugReporter::getCFG and BugReporter::getLiveVariables returns pointers i...Ted Kremenek
2008-07-03Added static analysis check to see if a subclass of NSObject implements -deal...Ted Kremenek
2008-07-02Unify the code path for the Dead Stores checker to always use the BugReporter...Ted Kremenek
2008-07-02Refactored some of the BugReporter interface so that data such as the ASTCont...Ted Kremenek
2008-07-02Added version of CheckDeadStores that accepts a client-provided LiveVariables...Ted Kremenek
2008-06-20When using the dead-stores checker with the BugReporter class, properly captu...Ted Kremenek
2008-06-20Modified the dead stores checker to...Ted Kremenek
2008-05-22Don't use ostringstream (pulling in <sstream>) when creating the dead store d...Ted Kremenek
2008-05-21Improve dead stores diagnostics to include the variable name.Ted Kremenek
2008-05-05Emit dead store warnings for ++ and -- operators.Ted Kremenek
2008-04-18Generalize caching mechanism for bugs reports. Now individual BugTypesTed Kremenek
2008-04-15Improve dead store diagnostic.Ted Kremenek
2008-04-15Bug fix in dead stores: don't always check the liveness of the first declTed Kremenek
2008-04-14Don't flag dead stores that occur in macros.Ted Kremenek
2008-04-14Bug fix in dead-store checker when walking the Decls in a DeclStmt: don'tTed Kremenek
2008-04-14Hooked up the dead-store checker to the BugReporter interface. Now dead-storeTed Kremenek
2008-03-15Make a major restructuring of the clang tree: introduce a top-levelChris Lattner