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
/
Sema
/
AnalysisBasedWarnings.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove trailing space
Fangrui Song
2018-07-30
1
-26
/
+26
*
Implement cpu_dispatch/cpu_specific Multiversioning
Erich Keane
2018-07-20
1
-0
/
+5
*
Change \t to spaces
Fangrui Song
2018-07-20
1
-3
/
+4
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-09
1
-2
/
+2
*
Track the result of evaluating a computed noexcept specification on the
Richard Smith
2018-05-03
1
-1
/
+1
*
Fix some handling of AST nodes with diagnostics.
Richard Trieu
2018-03-28
1
-8
/
+7
*
[clang] Change std::sort to llvm::sort in response to r327219
Mandeep Singh Grang
2018-03-27
1
-4
/
+4
*
Improve -Winfinite-recursion
Robert Widmann
2018-03-22
1
-47
/
+24
*
Re-land "[Sema] Make getCurFunction() return null outside function parsing"
Reid Kleckner
2018-03-12
1
-6
/
+7
*
Revert "[Sema] Make getCurFunction() return null outside function parsing"
Reid Kleckner
2018-03-08
1
-7
/
+6
*
[Sema] Make getCurFunction() return null outside function parsing
Reid Kleckner
2018-03-08
1
-6
/
+7
*
[Sema] Fix -Wunused-variable
Sam McCall
2018-02-20
1
-1
/
+0
*
Fix some -Wexceptions false positives.
Richard Smith
2018-02-20
1
-71
/
+48
*
DR126: partially implement the const-correct rules for exception handler matc...
Richard Smith
2018-01-13
1
-40
/
+13
*
Now that C++17 is official (https://www.iso.org/standard/68564.html), start c...
Aaron Ballman
2017-12-04
1
-1
/
+1
*
Do not perform the analysis based warning if the warnings are ignored
Olivier Goffart
2017-11-23
1
-4
/
+4
*
Enable support for the [[fallthrough]] attribute from WG14 N2052 when enablin...
Aaron Ballman
2017-10-18
1
-8
/
+7
*
[CFG] Relax Wexceptions warning on rethrow
Erich Keane
2017-10-17
1
-3
/
+3
*
Replace use of SmallVector::back + pop_back with pop_back_val
Erich Keane
2017-10-17
1
-2
/
+1
*
[Sema] Corrected the warn-on-throw-from-noexcept behavior to include nothrow
Erich Keane
2017-09-26
1
-1
/
+1
*
[CSA] [NFC] Move AnalysisContext.h to AnalysisDeclContext.h
George Karpenkov
2017-09-06
1
-1
/
+1
*
Address comments that escaped D33333
Erich Keane
2017-07-05
1
-7
/
+12
*
Fixed -Wexceptions derived-to-base false positives
Stephan Bergmann
2017-06-29
1
-1
/
+5
*
Emit warning when throw exception in destruct or dealloc functions which has a
Erich Keane
2017-06-23
1
-0
/
+150
*
[coroutines] Fix fallthrough diagnostics for coroutines
Eric Fiselier
2017-05-25
1
-17
/
+13
*
[coroutines] Build GRO declaration and return GRO statement
Gor Nishanov
2017-05-22
1
-1
/
+5
*
Suppress warning on unreachable [[clang::fallthrough]] within a template inst...
Richard Smith
2017-03-22
1
-4
/
+13
*
Avoid multiple -Wunreachable-code diagnostics that are triggered by
Alex Lorenz
2017-01-12
1
-0
/
+10
*
[coroutines] Build fallthrough and set_exception statements.
Eric Fiselier
2016-10-27
1
-12
/
+43
*
[NFC] Header cleanup
Mehdi Amini
2016-07-18
1
-5
/
+0
*
[PCH/preamble] Make sure that if the preamble/PCH was serialized with errors ...
Argyrios Kyrtzidis
2016-07-13
1
-1
/
+1
*
Rename a variable to avoid shadowing function parameter. NFC.
Bob Wilson
2016-05-25
1
-7
/
+7
*
arc-repeated-use-of-weak should not warn about IBOutlet properties
Bob Wilson
2016-05-25
1
-0
/
+6
*
Avoid -Wshadow warnings about constructor parameters named after fields
Reid Kleckner
2016-04-29
1
-1
/
+1
*
P0188R1: add support for standard [[fallthrough]] attribute. This is almost
Richard Smith
2016-03-08
1
-11
/
+32
*
[Sema] Replace pointer-to-map with a map. NFC.
George Burgess IV
2015-12-10
1
-12
/
+6
*
Use Sema::getLocForEndOfToken instead of Preprocessor::getLocForEndOfToken. NFC
Craig Topper
2015-11-15
1
-3
/
+1
*
Define weak and __weak to mean ARC-style weak references, even in MRC.
John McCall
2015-10-22
1
-1
/
+1
*
Fix Clang-tidy modernize-use-nullptr warnings in source directories; other mi...
Hans Wennborg
2015-10-06
1
-14
/
+13
*
Fix a few things with -Winfinite-recursion. NFC
Richard Trieu
2015-08-21
1
-42
/
+48
*
Use llvm::reverse to make a bunch of loops use foreach. NFC.
Pete Cooper
2015-07-30
1
-2
/
+1
*
Sema: Avoid a stack overflow on large CFGs
Duncan P. N. Exon Smith
2015-07-23
1
-16
/
+24
*
Sema: Split out helper from checkForFunctionCall(), NFC
Duncan P. N. Exon Smith
2015-07-23
1
-37
/
+37
*
Switch users of the 'for (StmtRange range = stmt->children(); range; ++range)...
Benjamin Kramer
2015-07-02
1
-5
/
+4
*
Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").
Alexander Kornienko
2015-06-22
1
-10
/
+7
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-22
1
-7
/
+10
*
add ConstEvaluatedExprVisitor
Scott Douglass
2015-06-10
1
-8
/
+9
*
Append CXXDefaultInitExpr's wrapped expression to the CFG when visiting a con...
Enrico Pertoso
2015-06-03
1
-0
/
+1
*
Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types
Benjamin Kramer
2015-05-29
1
-31
/
+31
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
1
-14
/
+9
[next]