index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
SemaCXX
/
array-bounds.cpp
Age
Commit message (
Expand
)
Author
2012-12-14
Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it.
Argyrios Kyrtzidis
2012-02-27
Fix a couple bugs in the way we handle array indexes in array bounds checking...
Eli Friedman
2012-01-24
Revert various template unreachability code I committed accidentally.
David Blaikie
2012-01-24
Simple hack to do unreachable code analysis on template patterns.
David Blaikie
2011-11-29
Suppress -Warray-bounds for classes (not just structs) where the last field is
Matt Beaumont-Gay
2011-11-29
Merge branch 'yo-dawg-i-herd-u-like-arrays'
Matt Beaumont-Gay
2011-11-24
Wordsmith the -Warray-bounds diagnostic text a bit
Matt Beaumont-Gay
2011-09-26
Fix regression of -Warray-bounds involving varargs functions [PR 11007].
Ted Kremenek
2011-09-17
Let -Warray-bounds handle casted array types without false positives.
Nico Weber
2011-08-05
Perform array bounds checking in more situations and properly handle special
Kaelyn Uhrain
2011-08-05
Flesh out the -Warray-bounds detection of C89 tail-padded one-element
Chandler Carruth
2011-08-02
disable array bounds overflow warning for cases where an array
Chris Lattner
2011-07-26
Revert r136046 while fixing handling of e.g. &foo[index_one_past_size]
Kaelyn Uhrain
2011-07-26
Expand array bounds checking to work in the presence of unary & and *,
Kaelyn Uhrain
2011-03-16
Teach CFGBuilder that the 'default' branch of a switch statement is dead if a...
Ted Kremenek
2011-03-04
Correctly handle nested switch statements in CFGBuilder when on switch statem...
Ted Kremenek
2011-03-01
Teach CFGBuilder to prune trivially unreachable case statements.
Ted Kremenek
2011-03-01
For C++, enhance -Warray-bounds to recursively analyze array subscript access...
Ted Kremenek
2011-02-23
Fix bogus -Warray-bounds warning involving 'array[true]' reported in PR 9296.
Ted Kremenek
2011-02-23
Add test case for PR 9284, a false positive for -Warray-bounds that is now ad...
Ted Kremenek
2011-02-23
Enhance Sema::DiagRuntimeBehavior() to delay some diagnostics to see if the r...
Ted Kremenek
2011-02-18
Fix assertion failure on -Warray-bounds for 32-bit builds of Clang.
Ted Kremenek
2011-02-17
Add -Warray-bounds test showing how the warning currently interoperates with ...
Ted Kremenek
2011-02-17
Enhance the array bounds checking to work for several other constructs,
Chandler Carruth
2011-02-16
Fix assertion failure in -Warray-bounds on template parameters used as arrays.
Ted Kremenek