aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/UninitializedValues.cpp
AgeCommit message (Expand)Author
2013-02-23Remove the CFGElement "Invalid" state.David Blaikie
2013-02-21Replace CFGElement llvm::cast support to be well-defined.David Blaikie
2013-02-21Use None rather than Optional<T>() where possible.David Blaikie
2013-02-20Include llvm::Optional in clang/Basic/LLVM.hDavid Blaikie
2013-01-19-Wuninitialized: warn about uninitialized values resulting from ?: that evalu...Ted Kremenek
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-11Test commit.Enea Zaffanella
2012-12-01Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ...Benjamin Kramer
2012-11-17Further reduce "-fsyntax-only -Wuninitialized" time on sqlite3.c by another 2...Ted Kremenek
2012-11-17Switch -Wuninitialized to use a reverse-post order traversal asTed Kremenek
2012-09-28Avoid malloc thrashing in the uninitialized value analysis.Benjamin Kramer
2012-09-13Teach -Wuninitialized to recognize common "noreturn" idioms inTed Kremenek
2012-09-12Teach -Wuninitialized to recognize __attribute__((analyzer_noreturn))Ted Kremenek
2012-07-19Simplify UninitializedValues.cpp by removing logic to handle the previous (im...Ted Kremenek
2012-07-17Uninitialized variables: two little changes:Richard Smith
2012-07-17-Wuninitialized: Split the classification of DeclRefExprs as initialization orRichard Smith
2012-07-13PR13360: When deciding the earliest point which inevitably leads to anRichard Smith
2012-07-02-Wuninitialized: assume that an __attribute__((returns_twice)) function mightRichard Smith
2012-06-16-Wuninitialized bugfix: when entering the scope of a variable with noRichard Smith
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie
2012-05-25Split a chunk of -Wconditional-uninitialized warnings out into a separate flag,Richard Smith
2012-05-24Some cleanups around the uninitialized variables warning, and a FIXME. No fun...Richard Smith
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