aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/UninitializedValues.cpp
AgeCommit message (Expand)Author
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie
2012-04-30PR11926 + duplicates: Fix crash in -Wuninitialized when using a compiler likeRichard Smith
2012-03-01Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h.Argyrios Kyrtzidis
2012-02-27Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h"Argyrios Kyrtzidis
2011-10-24Rename AnalysisContext to AnalysisDeclContext. Not only is this name more ac...Ted Kremenek
2011-10-13Tweak -Wuninitialized's handling of 'int x = x' to report that as the root ca...Ted Kremenek
2011-10-07Fix infinite loop in -Wuninitialized reported in PR 11069.Ted Kremenek
2011-09-02-Wuninitialized: fix insidious bug resulting from interplay of blocks and dea...Ted Kremenek
2011-08-23Constify the result of CFGStmt::getStmt().Ted Kremenek
2011-08-20Remove dead code.Ted Kremenek
2011-08-17Fix else style. No functionality change intended.Chad Rosier
2011-08-12Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...Ted Kremenek
2011-08-08Fix another -Wuninitialized assertion failure (this one involving bit casts) ...Ted Kremenek
2011-08-04Fix assertion failure in -Wuninitialized involving no-op casts. Fixes PR 10577.Ted Kremenek
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-07-22Move duplicate uninitialized warning suppression into theChandler Carruth
2011-07-20Fix -Wuninitialized regression involving functions invalidating parameters pa...Ted Kremenek
2011-07-19Fix false negative in -Wuninitialized involving a () wrapping an lvalue-to-rv...Ted Kremenek
2011-07-19Fix assertion failure in UninitializedValues.cpp where an lvalue to rvalue co...Ted Kremenek
2011-07-19Reduce -Wuninitialized time by 22% (on sqlite) by removing the recursive AST ...Ted Kremenek
2011-07-16Revert r135217, which wasn't the correct fix for PR10358. With thisChandler Carruth
2011-07-14Fix false negative reported in PR 10358 by using 'Unknown' in -Wuninitialized...Ted Kremenek
2011-07-08Make the worklist in the uninitialized values checker actually a queue.Chandler Carruth
2011-07-06Build up statistics about the work done for analysis based warnings.Chandler Carruth
2011-05-31Utilize PackedVector, introduced with llvm commit r132325.Argyrios Kyrtzidis
2011-05-10Fix crash in -Wuninitialized when using switch statments whose condition is a...Ted Kremenek
2011-04-28Silence more -Wnon-pod-memset given its current implementation. I may beChandler Carruth
2011-04-14When we transform a C++ exception declaration (e.g., for templateDouglas Gregor
2011-04-13Teach -Wuninitialized about C++'s typeid expression, including both theChandler Carruth
2011-04-07Teach -Wuninitialized to not warn about variables declared in C++ catch state...Ted Kremenek
2011-04-05Commit a bit of a hack to fully handle the situation where variables areChandler Carruth
2011-04-04Fix PR 9626 (duplicated self-init warnings under -Wuninitialized) with numero...Ted Kremenek
2011-04-04-Wuninitialized: don't warn about uninitialized variables in unreachable code.Ted Kremenek
2011-03-31-Wuninitialized should not warn about variables captured by blocks as byref.Ted Kremenek
2011-03-29Add workaround for Sema issue found in <rdar://problem/9188004>, which leads ...Ted Kremenek
2011-03-26Make helpers static.Benjamin Kramer
2011-03-17Extend -Wuninitialized to support vector types.Ted Kremenek
2011-03-15Appease GCC. I'm surprised Clang accepted this.Ted Kremenek
2011-03-15Split warnings from -Wuninitialized-experimental into "must-be-initialized" a...Ted Kremenek
2011-03-15Split warnings from -Wuninitialized-experimental into "must-be-initialized" a...Ted Kremenek
2011-03-15UninitializedValues: introduce ValueVector:reference class to forward to llvm...Ted Kremenek
2011-03-15UninitializedValues: wrap BitVector references in a new class ValueVector. N...Ted Kremenek
2011-03-15Substitue term "BitVector" with "ValueVector" to prep for further revisions. ...Ted Kremenek
2011-03-15Rename UninitializedValuesV2 to UninitializedValues.Ted Kremenek
2011-03-15Remove old UninitializedValues analysis.Ted Kremenek
2011-02-17Change the representation of GNU ?: expressions to use a different expressionJohn McCall
2011-02-13Give some convenient idiomatic accessors to Stmt::child_range andJohn McCall
2011-02-11Don't report dead stores on unreachable code paths. Fixes <rdar://problem/84...Ted Kremenek
2010-10-15Death to blocks, or at least the word "block" in one particular obnoxiouslyJohn McCall
2010-08-25GCC didn't care for my attempt at API compatibility, so brute-force everythingJohn McCall