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
*
Remove trailing space
Fangrui Song
2018-07-30
1
-11
/
+11
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-09
1
-1
/
+1
*
[Analysis] Fix some Clang-tidy modernize and Include What You Use warnings; o...
Eugene Zelenko
2018-03-21
1
-75
/
+95
*
Consolidate std::move() detection code. No behavior change.
Nico Weber
2017-09-28
1
-10
/
+5
*
[CSA] [NFC] Move AnalysisContext.h to AnalysisDeclContext.h
George Karpenkov
2017-09-06
1
-1
/
+1
*
NFC small format
Piotr Padlewski
2016-10-29
1
-1
/
+2
*
Roll-back r250822.
Angel Garcia Gomez
2015-10-20
1
-2
/
+2
*
Apply modernize-use-default to clang.
Angel Garcia Gomez
2015-10-20
1
-2
/
+2
*
Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").
Alexander Kornienko
2015-06-22
1
-5
/
+5
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-22
1
-5
/
+5
*
PR23334: Perform semantic checking of lambda capture initialization in the ri...
Richard Smith
2015-04-27
1
-1
/
+1
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
1
-1
/
+1
*
Make -Wuninitialized warn on pointer-to-member and comma operators.
Manuel Klimek
2015-03-03
1
-11
/
+44
*
When checking for uninitialized values, do not confuse "std::move" with every
Richard Trieu
2014-11-27
1
-1
/
+2
*
Reverting r214064 and r215650 while investigating a pesky performance regression
Artyom Skrobov
2014-09-23
1
-2
/
+62
*
More -Wuninitialized updates
Richard Trieu
2014-08-27
1
-3
/
+18
*
Passing a variable to std::move now counts as a use for -Wuninitialized
Richard Trieu
2014-08-26
1
-0
/
+10
*
Use the proper post-order traversal in LiveVariables analysis,
Artyom Skrobov
2014-08-14
1
-1
/
+1
*
Factoring DataflowWorklist out of LiveVariables and UninitializedValues analyses
Artyom Skrobov
2014-07-28
1
-62
/
+2
*
PR19996: don't crash if -Wuninitialized sees a c++1y lambda init-capture.
Richard Smith
2014-06-11
1
-1
/
+1
*
[C++11] Use 'nullptr'. Analysis edition.
Craig Topper
2014-05-20
1
-5
/
+5
*
[C++11] Replacing BlockDecl iterators capture_begin() and capture_end() with ...
Aaron Ballman
2014-03-14
1
-4
/
+3
*
[C++11] Replacing DeclStmt iterators decl_begin() and decl_end() with iterato...
Aaron Ballman
2014-03-14
1
-6
/
+4
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-14
1
-3
/
+3
*
Rework CFG edges to encode potentially unreachable edges, instead of just mak...
Ted Kremenek
2014-02-27
1
-0
/
+5
*
PR16054: Slight strengthening for -Wsometimes-uninitialized: if we use a
Richard Smith
2013-09-12
1
-1
/
+17
*
Use pop_back_val() instead of both back() and pop_back().
Robert Wilhelm
2013-08-23
1
-6
/
+4
*
Remove unused, awkward CFGStmtVisitor and subclasses.
Jordan Rose
2013-05-15
1
-1
/
+1
*
Remove the CFGElement "Invalid" state.
David Blaikie
2013-02-23
1
-3
/
+2
*
Replace CFGElement llvm::cast support to be well-defined.
David Blaikie
2013-02-21
1
-2
/
+2
*
Use None rather than Optional<T>() where possible.
David Blaikie
2013-02-21
1
-1
/
+1
*
Include llvm::Optional in clang/Basic/LLVM.h
David Blaikie
2013-02-20
1
-5
/
+5
*
-Wuninitialized: warn about uninitialized values resulting from ?: that evalu...
Ted Kremenek
2013-01-19
1
-0
/
+10
*
Remove useless 'llvm::' qualifier from names like StringRef and others that are
Dmitri Gribenko
2013-01-12
1
-2
/
+2
*
Test commit.
Enea Zaffanella
2013-01-11
1
-1
/
+1
*
Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ...
Benjamin Kramer
2012-12-01
1
-9
/
+10
*
Further reduce "-fsyntax-only -Wuninitialized" time on sqlite3.c by another 2...
Ted Kremenek
2012-11-17
1
-12
/
+52
*
Switch -Wuninitialized to use a reverse-post order traversal as
Ted Kremenek
2012-11-17
1
-15
/
+33
*
Avoid malloc thrashing in the uninitialized value analysis.
Benjamin Kramer
2012-09-28
1
-11
/
+5
*
Teach -Wuninitialized to recognize common "noreturn" idioms in
Ted Kremenek
2012-09-13
1
-4
/
+16
*
Teach -Wuninitialized to recognize __attribute__((analyzer_noreturn))
Ted Kremenek
2012-09-12
1
-8
/
+20
*
Simplify UninitializedValues.cpp by removing logic to handle the previous (im...
Ted Kremenek
2012-07-19
1
-142
/
+25
*
Uninitialized variables: two little changes:
Richard Smith
2012-07-17
1
-1
/
+3
*
-Wuninitialized: Split the classification of DeclRefExprs as initialization or
Richard Smith
2012-07-17
1
-228
/
+223
*
PR13360: When deciding the earliest point which inevitably leads to an
Richard Smith
2012-07-13
1
-14
/
+19
*
-Wuninitialized: assume that an __attribute__((returns_twice)) function might
Richard Smith
2012-07-02
1
-0
/
+18
*
-Wuninitialized bugfix: when entering the scope of a variable with no
Richard Smith
2012-06-16
1
-0
/
+12
*
Revert Decl's iterators back to pointer value_type rather than reference valu...
David Blaikie
2012-06-06
1
-1
/
+1
*
Split a chunk of -Wconditional-uninitialized warnings out into a separate flag,
Richard Smith
2012-05-25
1
-6
/
+134
*
Some cleanups around the uninitialized variables warning, and a FIXME. No fun...
Richard Smith
2012-05-24
1
-22
/
+18
[next]