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