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
/
StaticAnalyzer
/
Checkers
/
DeadStoresChecker.cpp
Age
Commit message (
Expand
)
Author
2013-04-25
[analyzer] Teach DeadStoreChecker to look though BO_Comma and disregard the LHS.
Anna Zaks
2013-02-18
Disable dead stores checker for template instantations. Fixes <rdar://proble...
Ted Kremenek
2013-01-12
Remove useless 'llvm::' qualifier from names like StringRef and others that are
Dmitri Gribenko
2012-12-01
Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ...
Benjamin Kramer
2012-10-30
Trim #includes.
Ted Kremenek
2012-09-06
Tweak DeadStoresChecker to not warn about dead stores to variables that
Ted Kremenek
2012-04-04
Look through chains of 'x = y = z' when employing silencing heuristics in the...
Ted Kremenek
2012-04-04
Include the "issue context" (e.g. function or method) where a static analyzer...
Ted Kremenek
2012-02-05
Basic: import SmallString<> into clang namespace
Dylan Noblesmith
2012-02-05
Basic: import OwningPtr<> into clang namespace
Dylan Noblesmith
2012-02-04
Move a method from IdentifierTable.h out of line and remove the SmallString i...
Benjamin Kramer
2012-01-17
Remove unnecessary default cases in switches over enums.
David Blaikie
2011-12-06
DeadStoresChecker: when whitelisting dead initializations with constants, look
Richard Smith
2011-10-24
Rename AnalysisContext to AnalysisDeclContext. Not only is this name more ac...
Ted Kremenek
2011-10-14
Change operator<< for raw_ostream and NamedDecl to take a reference instead o...
Benjamin Kramer
2011-10-07
Remove AnalysisContext::getLiveVariables(), and introduce a templatized mecha...
Ted Kremenek
2011-09-20
[analyzer] Refactor PathDiagnosticLocation: Make PathDiagnosticLocation(Sourc...
Anna Zaks
2011-08-21
[analyzer] Replace calls to getNameAsString() with StringRef equivalents.
Jordy Rose
2011-08-12
Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...
Ted Kremenek
2011-07-28
[analyzer] Overhaul how the static analyzer expects CFGs by forcing CFGs to b...
Ted Kremenek
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-06-15
Automatic Reference Counting.
John McCall
2011-03-01
[analyzer] Rename CheckerV2 -> Checker.
Argyrios Kyrtzidis
2011-02-28
[analyzer] Remove unused checker stuff from AnalysisConsumer and some unused ...
Argyrios Kyrtzidis
2011-02-17
[analyzer] Use the new registration mechanism on the non-path-sensitive-check...
Argyrios Kyrtzidis
2011-02-12
Don't emit a dead store for '++' operations unless it occurs with a return st...
Ted Kremenek
2011-02-11
Don't report dead stores on unreachable code paths. Fixes <rdar://problem/84...
Ted Kremenek
2011-02-10
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core'...
Ted Kremenek
2011-01-13
Rename 'CheckDeadStores.cpp' to 'DeadStoresChecker.cpp'.
Ted Kremenek