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
/
Analysis
/
UninitializedValues.cpp
Age
Commit message (
Expand
)
Author
2013-02-23
Remove the CFGElement "Invalid" state.
David Blaikie
2013-02-21
Replace CFGElement llvm::cast support to be well-defined.
David Blaikie
2013-02-21
Use None rather than Optional<T>() where possible.
David Blaikie
2013-02-20
Include llvm::Optional in clang/Basic/LLVM.h
David Blaikie
2013-01-19
-Wuninitialized: warn about uninitialized values resulting from ?: that evalu...
Ted Kremenek
2013-01-12
Remove useless 'llvm::' qualifier from names like StringRef and others that are
Dmitri Gribenko
2013-01-11
Test commit.
Enea Zaffanella
2012-12-01
Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ...
Benjamin Kramer
2012-11-17
Further reduce "-fsyntax-only -Wuninitialized" time on sqlite3.c by another 2...
Ted Kremenek
2012-11-17
Switch -Wuninitialized to use a reverse-post order traversal as
Ted Kremenek
2012-09-28
Avoid malloc thrashing in the uninitialized value analysis.
Benjamin Kramer
2012-09-13
Teach -Wuninitialized to recognize common "noreturn" idioms in
Ted Kremenek
2012-09-12
Teach -Wuninitialized to recognize __attribute__((analyzer_noreturn))
Ted Kremenek
2012-07-19
Simplify UninitializedValues.cpp by removing logic to handle the previous (im...
Ted Kremenek
2012-07-17
Uninitialized variables: two little changes:
Richard Smith
2012-07-17
-Wuninitialized: Split the classification of DeclRefExprs as initialization or
Richard Smith
2012-07-13
PR13360: When deciding the earliest point which inevitably leads to an
Richard Smith
2012-07-02
-Wuninitialized: assume that an __attribute__((returns_twice)) function might
Richard Smith
2012-06-16
-Wuninitialized bugfix: when entering the scope of a variable with no
Richard Smith
2012-06-06
Revert Decl's iterators back to pointer value_type rather than reference valu...
David Blaikie
2012-05-25
Split a chunk of -Wconditional-uninitialized warnings out into a separate flag,
Richard Smith
2012-05-24
Some cleanups around the uninitialized variables warning, and a FIXME. No fun...
Richard Smith
2012-04-30
Remove the ref/value inconsistency in filter_decl_iterator.
David Blaikie
2012-04-30
PR11926 + duplicates: Fix crash in -Wuninitialized when using a compiler like
Richard Smith
2012-03-01
Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h.
Argyrios Kyrtzidis
2012-02-27
Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h"
Argyrios Kyrtzidis
2011-10-24
Rename AnalysisContext to AnalysisDeclContext. Not only is this name more ac...
Ted Kremenek
2011-10-13
Tweak -Wuninitialized's handling of 'int x = x' to report that as the root ca...
Ted Kremenek
2011-10-07
Fix 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-23
Constify the result of CFGStmt::getStmt().
Ted Kremenek
2011-08-20
Remove dead code.
Ted Kremenek
2011-08-17
Fix else style. No functionality change intended.
Chad Rosier
2011-08-12
Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...
Ted Kremenek
2011-08-08
Fix another -Wuninitialized assertion failure (this one involving bit casts) ...
Ted Kremenek
2011-08-04
Fix assertion failure in -Wuninitialized involving no-op casts. Fixes PR 10577.
Ted Kremenek
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-22
Move duplicate uninitialized warning suppression into the
Chandler Carruth
2011-07-20
Fix -Wuninitialized regression involving functions invalidating parameters pa...
Ted Kremenek
2011-07-19
Fix false negative in -Wuninitialized involving a () wrapping an lvalue-to-rv...
Ted Kremenek
2011-07-19
Fix assertion failure in UninitializedValues.cpp where an lvalue to rvalue co...
Ted Kremenek
2011-07-19
Reduce -Wuninitialized time by 22% (on sqlite) by removing the recursive AST ...
Ted Kremenek
2011-07-16
Revert r135217, which wasn't the correct fix for PR10358. With this
Chandler Carruth
2011-07-14
Fix false negative reported in PR 10358 by using 'Unknown' in -Wuninitialized...
Ted Kremenek
2011-07-08
Make the worklist in the uninitialized values checker actually a queue.
Chandler Carruth
2011-07-06
Build up statistics about the work done for analysis based warnings.
Chandler Carruth
2011-05-31
Utilize PackedVector, introduced with llvm commit r132325.
Argyrios Kyrtzidis
2011-05-10
Fix crash in -Wuninitialized when using switch statments whose condition is a...
Ted Kremenek
2011-04-28
Silence more -Wnon-pod-memset given its current implementation. I may be
Chandler Carruth
2011-04-14
When we transform a C++ exception declaration (e.g., for template
Douglas Gregor
[next]