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
/
Analysis
/
UninitializedValues.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Constify the result of CFGStmt::getStmt().
Ted Kremenek
2011-08-23
1
-3
/
+3
*
Remove dead code.
Ted Kremenek
2011-08-20
1
-13
/
+1
*
Fix else style. No functionality change intended.
Chad Rosier
2011-08-17
1
-4
/
+2
*
Cleanup various declarations of 'Stmt*' to be 'Stmt *', etc. in libAnalyzer a...
Ted Kremenek
2011-08-12
1
-5
/
+5
*
Fix another -Wuninitialized assertion failure (this one involving bit casts) ...
Ted Kremenek
2011-08-08
1
-8
/
+23
*
Fix assertion failure in -Wuninitialized involving no-op casts. Fixes PR 10577.
Ted Kremenek
2011-08-04
1
-5
/
+19
*
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-23
1
-2
/
+2
*
Move duplicate uninitialized warning suppression into the
Chandler Carruth
2011-07-22
1
-7
/
+3
*
Fix -Wuninitialized regression involving functions invalidating parameters pa...
Ted Kremenek
2011-07-20
1
-1
/
+3
*
Fix false negative in -Wuninitialized involving a () wrapping an lvalue-to-rv...
Ted Kremenek
2011-07-19
1
-6
/
+11
*
Fix assertion failure in UninitializedValues.cpp where an lvalue to rvalue co...
Ted Kremenek
2011-07-19
1
-2
/
+3
*
Reduce -Wuninitialized time by 22% (on sqlite) by removing the recursive AST ...
Ted Kremenek
2011-07-19
1
-100
/
+87
*
Revert r135217, which wasn't the correct fix for PR10358. With this
Chandler Carruth
2011-07-16
1
-6
/
+4
*
Fix false negative reported in PR 10358 by using 'Unknown' in -Wuninitialized...
Ted Kremenek
2011-07-14
1
-4
/
+6
*
Make the worklist in the uninitialized values checker actually a queue.
Chandler Carruth
2011-07-08
1
-13
/
+13
*
Build up statistics about the work done for analysis based warnings.
Chandler Carruth
2011-07-06
1
-7
/
+13
*
Utilize PackedVector, introduced with llvm commit r132325.
Argyrios Kyrtzidis
2011-05-31
1
-34
/
+3
*
Fix crash in -Wuninitialized when using switch statments whose condition is a...
Ted Kremenek
2011-05-10
1
-5
/
+9
*
Silence more -Wnon-pod-memset given its current implementation. I may be
Chandler Carruth
2011-04-28
1
-1
/
+1
*
When we transform a C++ exception declaration (e.g., for template
Douglas Gregor
2011-04-14
1
-6
/
+0
*
Teach -Wuninitialized about C++'s typeid expression, including both the
Chandler Carruth
2011-04-13
1
-0
/
+12
*
Teach -Wuninitialized to not warn about variables declared in C++ catch state...
Ted Kremenek
2011-04-07
1
-0
/
+1
*
Commit a bit of a hack to fully handle the situation where variables are
Chandler Carruth
2011-04-05
1
-4
/
+16
*
Fix PR 9626 (duplicated self-init warnings under -Wuninitialized) with numero...
Ted Kremenek
2011-04-04
1
-2
/
+17
*
-Wuninitialized: don't warn about uninitialized variables in unreachable code.
Ted Kremenek
2011-04-04
1
-2
/
+15
*
-Wuninitialized should not warn about variables captured by blocks as byref.
Ted Kremenek
2011-03-31
1
-6
/
+11
*
Add workaround for Sema issue found in <rdar://problem/9188004>, which leads ...
Ted Kremenek
2011-03-29
1
-3
/
+13
*
Make helpers static.
Benjamin Kramer
2011-03-26
1
-2
/
+2
*
Extend -Wuninitialized to support vector types.
Ted Kremenek
2011-03-17
1
-3
/
+6
*
Appease GCC. I'm surprised Clang accepted this.
Ted Kremenek
2011-03-15
1
-10
/
+6
*
Split warnings from -Wuninitialized-experimental into "must-be-initialized" a...
Ted Kremenek
2011-03-15
1
-0
/
+3
*
Split warnings from -Wuninitialized-experimental into "must-be-initialized" a...
Ted Kremenek
2011-03-15
1
-20
/
+44
*
UninitializedValues: introduce ValueVector:reference class to forward to llvm...
Ted Kremenek
2011-03-15
1
-9
/
+26
*
UninitializedValues: wrap BitVector references in a new class ValueVector. N...
Ted Kremenek
2011-03-15
1
-5
/
+17
*
Substitue term "BitVector" with "ValueVector" to prep for further revisions. ...
Ted Kremenek
2011-03-15
1
-44
/
+45
*
Rename UninitializedValuesV2 to UninitializedValues.
Ted Kremenek
2011-03-15
1
-0
/
+611
*
Remove old UninitializedValues analysis.
Ted Kremenek
2011-03-15
1
-317
/
+0
*
Change the representation of GNU ?: expressions to use a different expression
John McCall
2011-02-17
1
-5
/
+6
*
Give some convenient idiomatic accessors to Stmt::child_range and
John McCall
2011-02-13
1
-1
/
+1
*
Don't report dead stores on unreachable code paths. Fixes <rdar://problem/84...
Ted Kremenek
2011-02-11
1
-0
/
+2
*
Death to blocks, or at least the word "block" in one particular obnoxiously
John McCall
2010-10-15
1
-4
/
+4
*
GCC didn't care for my attempt at API compatibility, so brute-force everything
John McCall
2010-08-25
1
-2
/
+2
*
[CFG]
Ted Kremenek
2010-03-02
1
-2
/
+6
*
Split libAnalysis into two libraries: libAnalysis and libChecker.
Ted Kremenek
2010-01-25
1
-1
/
+0
*
lib/Analysis: Remove VISIBILITY_HIDDEN from definitions in anonymous namespace
Kovarththanan Rajaratnam
2009-11-28
1
-4
/
+3
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-42
/
+42
*
rename some methods.
Chris Lattner
2009-03-28
1
-1
/
+1
*
move library-specific diagnostic headers into library private dirs. Reduce
Chris Lattner
2009-01-29
1
-1
/
+1
*
Split the single monolithic DiagnosticKinds.def file into one
Chris Lattner
2009-01-27
1
-1
/
+1
*
Flow-sensitive uninitialized values analysis: properly handle the 'element' e...
Ted Kremenek
2008-11-14
1
-3
/
+10
[prev]
[next]