index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Sema
/
AnalysisBasedWarnings.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Teach CFGImplicitDtor::getDestructorDecl() about arrays of objects with destr...
Ted Kremenek
2011-03-03
1
-1
/
+1
*
Introduce CFGImplicitDtor::isNoReturn() to query whether a destructor actuall...
Ted Kremenek
2011-03-02
1
-0
/
+15
*
Enhance Sema::DiagRuntimeBehavior() to delay some diagnostics to see if the r...
Ted Kremenek
2011-02-23
1
-3
/
+47
*
Have IdempotentOperationsChecker pull its CFGStmtMap from AnalysisContext.
Ted Kremenek
2011-02-23
1
-0
/
+1
*
Issue AnalysisBasedWarnings as part of calling Sema::PopBlockOrFunctionScope(...
Ted Kremenek
2011-02-23
1
-23
/
+4
*
Don't suggest -Wuninitialized fixits for uninitialized enum types.
Ted Kremenek
2011-02-05
1
-1
/
+3
*
Based on user feedback, swap -Wuninitialized diagnostics to have the warning ...
Ted Kremenek
2011-02-02
1
-32
/
+37
*
Add temporary hack to -Wuninitialize to create a separate CFG (for C++ code) ...
Ted Kremenek
2011-02-01
1
-1
/
+18
*
Tweak -Wuninitialized fixit for '_Bool' types to be initialized to 0, and C++...
Ted Kremenek
2011-01-27
1
-1
/
+1
*
Teach -Wuninitialized to suggest "= false" for initializing bool variables.
Ted Kremenek
2011-01-27
1
-0
/
+3
*
Teach -Wreturn-type that destructors can appear
Ted Kremenek
2011-01-26
1
-11
/
+14
*
Fix regression in -Wreturn-type caused by not
Ted Kremenek
2011-01-25
1
-12
/
+3
*
Teach -Wuninitialized-experimental to also warn
Ted Kremenek
2011-01-25
1
-10
/
+17
*
Provide -Wuninitialized-experimental fixits
Ted Kremenek
2011-01-21
1
-3
/
+10
*
Add basic fixits for -Wuninitialized-experimental
Ted Kremenek
2011-01-21
1
-1
/
+20
*
Enhance -Wuninitialized-experimental diagnostics
Ted Kremenek
2011-01-21
1
-3
/
+51
*
Teach UninitializedValuesV2 to implicitly reason about C++
Ted Kremenek
2011-01-18
1
-7
/
+3
*
Handle base and member destructors in CheckFallThrough.
Anders Carlsson
2011-01-17
1
-1
/
+10
*
Fix a bug where the -Wmissing-noreturn would always treat constructors with b...
Anders Carlsson
2011-01-16
1
-0
/
+6
*
Add initial prototype for implementation of
Ted Kremenek
2011-01-15
1
-0
/
+30
*
Remove a kludge from analysis based warnings that used to detect
Chandler Carruth
2011-01-08
1
-14
/
+2
*
Fix diagnostic pragmas.
Argyrios Kyrtzidis
2010-12-15
1
-9
/
+16
*
Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical
John McCall
2010-12-06
1
-1
/
+1
*
Introduce new CFGElement hierarchy to support C++ CFG, based on Marcin's patch
Zhongxing Xu
2010-09-16
1
-1
/
+5
*
Enhance -Wreturn-type to not warn when control-flow is most likely limited by...
Ted Kremenek
2010-09-09
1
-5
/
+9
*
Split out a header to hold APIs meant for the Sema implementation from Sema.h.
John McCall
2010-08-25
1
-1
/
+1
*
Remove Sema.h's dependency on DeclCXX.h.
John McCall
2010-08-25
1
-0
/
+1
*
Remove AnalysisBasedWarnings.h's dependency on Type.h
John McCall
2010-08-25
1
-6
/
+21
*
Struggle mightily against header inclusion in Sema.h.
John McCall
2010-08-24
1
-0
/
+1
*
Move Sema's headers into include/clang/Sema, renaming a few along the way.
Douglas Gregor
2010-08-12
1
-2
/
+2
*
Fix namespace polution.
Dan Gohman
2010-07-26
1
-0
/
+4
*
Fix construction of AnalysisContext. Thanks Daniel.
Zhongxing Xu
2010-07-19
1
-1
/
+1
*
Add a hack to silence warnings about failing to return from functions after
Chandler Carruth
2010-05-17
1
-0
/
+13
*
Don't emit any fallthrough / missing-noreturn warnings if we can't
John McCall
2010-05-16
1
-5
/
+11
*
Don't perform AnalysisBasedWarnings in Sema or run the static analyzer when a
Ted Kremenek
2010-04-30
1
-2
/
+4
*
An edge from a call expression to the exit block is only an abnormal edge
John McCall
2010-04-30
1
-1
/
+2
*
If a non-noreturn virtual member function is guaranteed not to return,
Douglas Gregor
2010-04-16
1
-5
/
+16
*
Remove micro-optimization for not issueing CFG-based warnings for 'static inl...
Ted Kremenek
2010-04-08
1
-59
/
+2
*
Removed unused object.
Ted Kremenek
2010-04-08
1
-1
/
+0
*
Use SmallVector instead of an std::queue.
Ted Kremenek
2010-04-08
1
-2
/
+1
*
the big refactoring bits of PR3782.
Rafael Espindola
2010-03-30
1
-2
/
+2
*
Be a bit more consistent in using operator->
Rafael Espindola
2010-03-29
1
-1
/
+1
*
For forward-declared static inline functions, delay CFG-based warnings until we
Ted Kremenek
2010-03-23
1
-7
/
+21
*
Only perform CFG-based warnings on 'static inline' functions that
Ted Kremenek
2010-03-23
1
-23
/
+69
*
Don't bother running the analysis for CFG-based warnings if the
Ted Kremenek
2010-03-20
1
-0
/
+7
*
Refactor CFG-based warnings in Sema to be run by a worked object called Analy...
Ted Kremenek
2010-03-20
1
-0
/
+362