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
/
Frontend
Commit message (
Expand
)
Author
Age
Files
Lines
*
[Static Analyzer] Do not fail silently, when the analyzer is invoked from too...
Gabor Horvath
2015-07-15
1
-1
/
+6
*
[Static Analyzer] Basic per checker command line option validation.
Gabor Horvath
2015-07-09
1
-0
/
+1
*
[static analyzer] Analyzer is skipping forward declared C/C++ functions
Anna Zaks
2015-06-26
1
-1
/
+4
*
Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").
Alexander Kornienko
2015-06-22
1
-2
/
+2
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-22
1
-2
/
+2
*
Introduce a PCHContainerOperations interface (NFC).
Adrian Prantl
2015-06-20
1
-1
/
+1
*
Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types
Benjamin Kramer
2015-05-29
1
-1
/
+1
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
2
-7
/
+6
*
Teach raw_ostream to accept SmallString.
Yaron Keren
2015-03-10
1
-1
/
+1
*
[analyzer] Don't skip analyzing the functions in preprocessed files.
Anna Zaks
2015-02-05
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
3
-16
/
+13
*
[llvm-api-change] Use findProgramByName.
Michael J. Spencer
2014-11-04
1
-1
/
+3
*
[Analysis] Add missing newlines at end of file.
Daniel Dunbar
2014-10-09
2
-2
/
+2
*
unique_ptrify AnalysisConsumer.cpp::CreateUbiViz
David Blaikie
2014-09-05
1
-4
/
+4
*
unique_ptrify clang::ento::createCheckerManager
David Blaikie
2014-08-29
2
-18
/
+11
*
Add an option to silence all analyzer warnings.
Anna Zaks
2014-08-29
2
-2
/
+10
*
[CMake] clangStaticAnalyzerFrontend: Add clangLex, corresponding to r216550.
NAKAMURA Takumi
2014-08-28
1
-0
/
+1
*
Add support for the static analyzer to synthesize function implementations fr...
Ted Kremenek
2014-08-27
6
-14
/
+268
*
Recommit 213307: unique_ptr-ify ownership of ASTConsumers (reverted in r213325)
David Blaikie
2014-08-10
2
-4
/
+4
*
Remove uses of the redundant ".reset(nullptr)" of unique_ptr, in favor of ".r...
David Blaikie
2014-07-19
1
-8
/
+7
*
Revert "unique_ptr-ify ownership of ASTConsumers"
David Blaikie
2014-07-17
2
-4
/
+4
*
unique_ptr-ify ownership of ASTConsumers
David Blaikie
2014-07-17
2
-4
/
+4
*
Track IntrusiveRefCntPtr::get() changes from LLVM r212366
Alp Toker
2014-07-05
1
-1
/
+1
*
[C++11] Use 'nullptr'. StaticAnalyzer edition.
Craig Topper
2014-05-27
2
-13
/
+14
*
Don't pass llvm::DenseSet<> by value.
Alexander Kornienko
2014-04-23
1
-4
/
+4
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-2
/
+2
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-15
1
-10
/
+10
*
[C++11] Replace OwningPtr include with <memory>.
Ahmed Charles
2014-03-09
2
-2
/
+2
*
Replace OwningPtr with std::unique_ptr.
Ahmed Charles
2014-03-07
2
-7
/
+7
*
Change OwningPtr::take() to OwningPtr::release().
Ahmed Charles
2014-03-07
2
-2
/
+2
*
Added an inserter for ArrayRef<SourceRange>.
Alexander Kornienko
2014-03-06
1
-12
/
+4
*
Switch all uses of LLVM_OVERRIDE to just use 'override' directly.
Craig Topper
2014-03-02
1
-1
/
+1
*
[CMake] Use LINK_LIBS instead of target_link_libraries().
NAKAMURA Takumi
2014-02-26
1
-2
/
+1
*
[CMake] Get rid of explicit dependencies to include/clang/*.inc and introduce...
NAKAMURA Takumi
2014-02-21
1
-10
/
+0
*
Allow specifying a custom PathDiagnosticConsumer for use with the static anal...
Alexander Kornienko
2014-02-03
1
-19
/
+27
*
[CMake] Prune stray entries in add_dependencies(). target_link_libraries() im...
NAKAMURA Takumi
2014-01-31
1
-2
/
+0
*
[CMake] clangStaticAnalyzerFrontend: Deprecate LLVM_NO_RTTI.
NAKAMURA Takumi
2014-01-28
1
-2
/
+0
*
Sort all the #include lines with LLVM's utils/sort_includes.py which
Chandler Carruth
2014-01-07
1
-1
/
+1
*
Make clang::ento::CreateAnalysisConsumer a part of a public interface of the ...
Alexander Kornienko
2014-01-03
3
-45
/
+2
*
Fix another misuse of getCustomDiagID()
Alp Toker
2013-12-23
1
-25
/
+13
*
[analyzer] Use DataRecursiveASTVisitor for the AnalysisConsumer.
Argyrios Kyrtzidis
2013-12-20
1
-2
/
+2
*
[CMake] clang/lib: Prune redundant dependencies.
NAKAMURA Takumi
2013-12-10
1
-3
/
+0
*
[CMake] clang/lib: Satisfy dependencies to add *actually used* libraries on t...
NAKAMURA Takumi
2013-12-09
1
-2
/
+8
*
Split isFromMainFile into two functions.
Eli Friedman
2013-08-22
1
-1
/
+1
*
[analyzer] Merge TextPathDiagnostics and ClangDiagPathDiagConsumer.
Jordan Rose
2013-08-16
1
-19
/
+55
*
Use llvm::sys::fs::createTemporaryFile.
Rafael Espindola
2013-07-05
1
-1
/
+1
*
We only create one file, no need to delete a directory.
Rafael Espindola
2013-06-26
1
-8
/
+7
*
Remove unused include.
Rafael Espindola
2013-06-26
1
-1
/
+0
*
Remove more uses of llvm::sys::Path.
Rafael Espindola
2013-06-26
1
-26
/
+13
[next]