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
/
Sema
/
AnalysisBasedWarnings.cpp
Age
Commit message (
Expand
)
Author
2010-09-16
Introduce new CFGElement hierarchy to support C++ CFG, based on Marcin's patch
Zhongxing Xu
2010-09-09
Enhance -Wreturn-type to not warn when control-flow is most likely limited by...
Ted Kremenek
2010-08-25
Split out a header to hold APIs meant for the Sema implementation from Sema.h.
John McCall
2010-08-25
Remove Sema.h's dependency on DeclCXX.h.
John McCall
2010-08-25
Remove AnalysisBasedWarnings.h's dependency on Type.h
John McCall
2010-08-24
Struggle mightily against header inclusion in Sema.h.
John McCall
2010-08-12
Move Sema's headers into include/clang/Sema, renaming a few along the way.
Douglas Gregor
2010-07-26
Fix namespace polution.
Dan Gohman
2010-07-19
Fix construction of AnalysisContext. Thanks Daniel.
Zhongxing Xu
2010-05-17
Add a hack to silence warnings about failing to return from functions after
Chandler Carruth
2010-05-16
Don't emit any fallthrough / missing-noreturn warnings if we can't
John McCall
2010-04-30
Don't perform AnalysisBasedWarnings in Sema or run the static analyzer when a
Ted Kremenek
2010-04-30
An edge from a call expression to the exit block is only an abnormal edge
John McCall
2010-04-16
If a non-noreturn virtual member function is guaranteed not to return,
Douglas Gregor
2010-04-08
Remove micro-optimization for not issueing CFG-based warnings for 'static inl...
Ted Kremenek
2010-04-08
Removed unused object.
Ted Kremenek
2010-04-08
Use SmallVector instead of an std::queue.
Ted Kremenek
2010-03-30
the big refactoring bits of PR3782.
Rafael Espindola
2010-03-29
Be a bit more consistent in using operator->
Rafael Espindola
2010-03-23
For forward-declared static inline functions, delay CFG-based warnings until we
Ted Kremenek
2010-03-23
Only perform CFG-based warnings on 'static inline' functions that
Ted Kremenek
2010-03-20
Don't bother running the analysis for CFG-based warnings if the
Ted Kremenek
2010-03-20
Refactor CFG-based warnings in Sema to be run by a worked object called Analy...
Ted Kremenek