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
/
StaticAnalyzer
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add a missing forward def of CheckerManager. NFC.
Pete Cooper
2015-04-17
1
-0
/
+2
*
Remove the assertion as it was useless and broken.
Sylvestre Ledru
2015-04-17
1
-4
/
+0
*
Fix a bad assert. Found by coverity. CID 1101110
Sylvestre Ledru
2015-04-17
1
-1
/
+1
*
[analyzer] This implements potential undefbehavior.ZeroAllocDereference checker.
Anton Yartsev
2015-04-14
1
-11
/
+155
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
10
-17
/
+14
*
Reduce dyn_cast<> to isa<> or cast<> where possible. Clang edition.
Benjamin Kramer
2015-04-10
1
-4
/
+4
*
[analyzer] Disable all retain count diagnostics on values that come from ivars.
Jordan Rose
2015-03-30
1
-2
/
+41
*
[analyzer] Don't special-case ivars backing +0 properties.
Jordan Rose
2015-03-30
1
-82
/
+1
*
[analyzer] Remove unused function. No functional change intended.
Benjamin Kramer
2015-03-24
1
-11
/
+0
*
[Analyzer] Don't inherit from FoldingSet.
Benjamin Kramer
2015-03-22
1
-4
/
+4
*
[analyzer] RetainCountChecker: Don't assume +0 for ivars backing readonly pro...
Jordan Rose
2015-03-20
1
-12
/
+52
*
Fix another ternary Visual C++ is OK wiht but gcc not.
Yaron Keren
2015-03-18
1
-1
/
+1
*
Remove many superfluous SmallString::str() calls.
Yaron Keren
2015-03-18
3
-5
/
+5
*
[analyzer] Sort path diagnostics with array_pod_sort.
Benjamin Kramer
2015-03-14
1
-5
/
+9
*
Enable security checks for arc4random() on CloudABI as well.
Ed Schouten
2015-03-11
1
-0
/
+1
*
[analyzer] Make getCheckIfTracked() return either leak or regular checker.
Anton Yartsev
2015-03-10
1
-19
/
+29
*
Teach raw_ostream to accept SmallString.
Yaron Keren
2015-03-10
1
-1
/
+1
*
Make helper functions static. NFC.
Benjamin Kramer
2015-03-09
1
-1
/
+1
*
[analyzer] RetainCountChecker: CF properties are always manually retain-counted.
Jordan Rose
2015-03-07
1
-8
/
+13
*
[analyzer] Remove unused type (addition to r231540: "Revert changes from r229...
Anton Yartsev
2015-03-07
1
-1
/
+0
*
[analyzer] Revert changes from r229593; an enhancement is under discussion
Anton Yartsev
2015-03-07
1
-87
/
+67
*
[analyzer] Bug fix: do not report leaks for alloca()
Anton Yartsev
2015-03-04
1
-0
/
+5
*
[analyzer] Individual configuration options can be specified for checkers.
Gabor Horvath
2015-03-04
3
-38
/
+71
*
[analyzer] unix.Malloc: preserve AllocaRegion bound to __builtin_alloca().
Anton Yartsev
2015-03-03
1
-13
/
+17
*
Sema: Parenthesized bound destructor member expressions can be called
David Majnemer
2015-02-25
1
-1
/
+1
*
[analyzer] RetainCountChecker: don't try to track ivars known to be nil.
Jordan Rose
2015-02-19
1
-2
/
+4
*
[analyzer] Different handling of alloca().
Anton Yartsev
2015-02-19
1
-30
/
+78
*
[analyzer] Refactoring: clarified the way the proper check kind is chosen.
Anton Yartsev
2015-02-18
1
-64
/
+86
*
Prefer SmallVector::append/insert over push_back loops. Clang edition.
Benjamin Kramer
2015-02-17
1
-5
/
+2
*
Analyzer: Replace a set of particularly ugly faux variadics.
Benjamin Kramer
2015-02-15
1
-8
/
+0
*
[analyzer] Pass actual state to alloc/dealloc handling functions.
Anton Yartsev
2015-02-10
1
-43
/
+78
*
[Static Analyzer] The name of the checker that reports a bug is added
Gabor Horvath
2015-02-09
1
-1
/
+3
*
Update APIs that return a pair of iterators to return an iterator_range instead.
Benjamin Kramer
2015-02-06
4
-34
/
+31
*
[analyzer] Relax an assertion in VisitLvalArraySubscriptExpr
Anna Zaks
2015-02-05
1
-1
/
+3
*
[analyzer] Do not crash in the KeychainAPI checker on user defined 'free()'.
Anna Zaks
2015-02-05
1
-2
/
+10
*
[analyzer] Look for allocation site in the parent frames as well as the curre...
Anna Zaks
2015-02-05
3
-26
/
+23
*
[analyzer] Don't skip analyzing the functions in preprocessed files.
Anna Zaks
2015-02-05
1
-1
/
+1
*
[analyzer] RetainCountChecker: be forgiving when ivars are accessed directly.
Jordan Rose
2015-02-04
1
-82
/
+216
*
Fix layering violation: include/clang/Basic/PlistSupport.h should not include
Richard Smith
2015-01-28
1
-11
/
+11
*
Test commit, no changes.
Pavel Labath
2015-01-20
1
-1
/
+1
*
Remove std::move that was preventing return value optimization.
Richard Trieu
2015-01-17
1
-1
/
+1
*
[cleanup] Re-sort *all* #include lines with llvm/utils/sort_includes.py
Chandler Carruth
2015-01-14
4
-17
/
+14
*
Use nullptr to silence -Wsentinel when self-hosting on Windows
Reid Kleckner
2014-12-01
1
-7
/
+7
*
Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...
David Blaikie
2014-11-19
1
-1
/
+1
*
clang-format a recent commit I made
David Blaikie
2014-11-19
1
-1
/
+1
*
Standardize on StringMap::insert, removing uses of StringMap::GetOrCreateValue.
David Blaikie
2014-11-19
2
-13
/
+12
*
Remove some redundant virtual specifiers on overriden functions.
David Blaikie
2014-11-14
1
-1
/
+1
*
[c++1z] N4295: fold-expressions.
Richard Smith
2014-11-08
1
-0
/
+1
*
[llvm-api-change] Use findProgramByName.
Michael J. Spencer
2014-11-04
1
-1
/
+3
*
Use the new LLVM_END_WITH_NULL name
Reid Kleckner
2014-11-04
1
-2
/
+2
[next]