index
:
delta/clang.git
baserock/flang
google/stable
google/testing
master
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
release_34
release_35
release_35@215011
release_36
release_37
release_38
release_39
release_40
release_50
release_60
release_70
release_80
release_90
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
llvm.org: Obsolete (use llvm)
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Sema
/
uninit-variables.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Teach -Wuninitialized to recognize __attribute__((analyzer_noreturn))
Ted Kremenek
2012-09-12
1
-0
/
+23
*
When a && or || appears as the condition of a ?:, perform appropriate
Richard Smith
2012-07-24
1
-0
/
+5
*
Uninitialized variables: two little changes:
Richard Smith
2012-07-17
1
-8
/
+13
*
-Wuninitialized: Split the classification of DeclRefExprs as initialization or
Richard Smith
2012-07-17
1
-2
/
+15
*
Refine CFG so that '&&' and '||' don't lead to extra confluence points when u...
Ted Kremenek
2012-07-14
1
-4
/
+4
*
-Wuninitialized: assume that an __attribute__((returns_twice)) function might
Richard Smith
2012-07-02
1
-0
/
+19
*
Don't warn about address-to-member used as part of initialisation, if
Joerg Sonnenberger
2012-06-17
1
-0
/
+4
*
-Wuninitialized bugfix: when entering the scope of a variable with no
Richard Smith
2012-06-16
1
-0
/
+25
*
In response to some discussions on IRC, tweak the wording of the new
Richard Smith
2012-05-26
1
-4
/
+6
*
Split a chunk of -Wconditional-uninitialized warnings out into a separate flag,
Richard Smith
2012-05-25
1
-6
/
+7
*
Fix a note without a SourceLocation.
Richard Trieu
2012-05-03
1
-0
/
+10
*
Only warn at self-initialization if some later use is always uninitialized.
Matt Beaumont-Gay
2011-10-19
1
-1
/
+9
*
Tweak -Wuninitialized's handling of 'int x = x' to report that as the root ca...
Ted Kremenek
2011-10-13
1
-4
/
+9
*
r141345 also fixed a -Wuninitialized bug where loop conditions were not alway...
Ted Kremenek
2011-10-07
1
-0
/
+6
*
Fix infinite loop in -Wuninitialized reported in PR 11069.
Ted Kremenek
2011-10-07
1
-0
/
+14
*
Show either a location or a fixit note, not both, for uninitialized variable ...
David Blaikie
2011-09-10
1
-28
/
+28
*
-Wuninitialized: fix insidious bug resulting from interplay of blocks and dea...
Ted Kremenek
2011-09-02
1
-0
/
+10
*
Fix regression in -Wuninitialized involving VLAs. It turns out that we were ...
Ted Kremenek
2011-08-23
1
-0
/
+9
*
Move duplicate uninitialized warning suppression into the
Chandler Carruth
2011-07-22
1
-4
/
+4
*
Fix false negative in -Wuninitialized involving a () wrapping an lvalue-to-rv...
Ted Kremenek
2011-07-19
1
-2
/
+2
*
Fix assertion failure in UninitializedValues.cpp where an lvalue to rvalue co...
Ted Kremenek
2011-07-19
1
-0
/
+5
*
Revert r135217, which wasn't the correct fix for PR10358. With this
Chandler Carruth
2011-07-16
1
-4
/
+19
*
Fix false negative reported in PR 10358 by using 'Unknown' in -Wuninitialized...
Ted Kremenek
2011-07-14
1
-4
/
+4
*
Fix crash in -Wuninitialized when using switch statments whose condition is a...
Ted Kremenek
2011-05-10
1
-0
/
+13
*
Switch 'is possibly uninitialized' to 'may be uninitialized' based on
Chandler Carruth
2011-04-08
1
-12
/
+12
*
Now that the analyzer is distinguishing between uninitialized uses that
Chandler Carruth
2011-04-08
1
-14
/
+14
*
Commit a bit of a hack to fully handle the situation where variables are
Chandler Carruth
2011-04-05
1
-2
/
+4
*
Fix PR9624 by explicitly disabling uninitialized warnings for direct self-init:
Chandler Carruth
2011-04-05
1
-1
/
+1
*
Fix PR 9626 (duplicated self-init warnings under -Wuninitialized) with numero...
Ted Kremenek
2011-04-04
1
-1
/
+1
*
-Wuninitialized: use "self-init" warning when issue uninitialized values warn...
Ted Kremenek
2011-04-04
1
-1
/
+1
*
-Wuninitialized: don't issue fixit for initializer if a variable declaration ...
Ted Kremenek
2011-04-04
1
-1
/
+1
*
-Wuninitialized should not warn about variables captured by blocks as byref.
Ted Kremenek
2011-03-31
1
-0
/
+9
*
Rename -Wuninitialized-maybe to -Wconditional-uninitialized.
Ted Kremenek
2011-03-17
1
-1
/
+1
*
Take 2: merge -Wuninitialized-experimental into -Wuninitialized. Only *must-...
Ted Kremenek
2011-03-15
1
-1
/
+1
*
Split warnings from -Wuninitialized-experimental into "must-be-initialized" a...
Ted Kremenek
2011-03-15
1
-1
/
+1
*
Remove old UninitializedValues analysis.
Ted Kremenek
2011-03-15
1
-0
/
+68
*
Move uninitialized variable checking back under -Wuninitialized-experimental....
Ted Kremenek
2011-02-07
1
-1
/
+1
*
Reenable -Wuninitialized warning for captured block variables.
Ted Kremenek
2011-02-03
1
-2
/
+2
*
Based on user feedback, swap -Wuninitialized diagnostics to have the warning ...
Ted Kremenek
2011-02-02
1
-39
/
+39
*
Enhance -Wuninitialized to better reason about || and &&, tracking dual dataf...
Ted Kremenek
2011-02-01
1
-0
/
+20
*
Teach -Wuninitialized about indirect goto. Fixes PR 9071.
Ted Kremenek
2011-01-27
1
-0
/
+11
*
Teach -Wuninitialized not to assert when analyzing
Ted Kremenek
2011-01-27
1
-0
/
+6
*
Merge -Wuninitialized-experimental into -Wuninitialized.
Ted Kremenek
2011-01-26
1
-1
/
+1
*
Tweak -Wuninitialized-experimental to not emit
Ted Kremenek
2011-01-26
1
-0
/
+11
*
Teach -Wuninitialized-experimental to also warn
Ted Kremenek
2011-01-25
1
-1
/
+21
*
Teach -Wuninitialized-experimental about sizeof().
Ted Kremenek
2011-01-23
1
-0
/
+12
*
Provide -Wuninitialized-experimental fixits
Ted Kremenek
2011-01-21
1
-13
/
+23
*
Add basic fixits for -Wuninitialized-experimental
Ted Kremenek
2011-01-21
1
-1
/
+1
*
Enhance -Wuninitialized-experimental diagnostics
Ted Kremenek
2011-01-21
1
-27
/
+27
*
Add rudimentary path-sensitivity to UnintializedValuesV2
Ted Kremenek
2011-01-20
1
-1
/
+60
[next]