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
/
AST
/
Decl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[GCC] Attribute ifunc support in clang
Dmitry Polukhin
2016-04-11
1
-2
/
+2
*
Implement support for [[nodiscard]] in C++1z that is based off existing suppo...
Aaron Ballman
2016-03-07
1
-5
/
+11
*
[OPENMP 4.0] Initial support for 'omp declare reduction' construct.
Alexey Bataev
2016-03-03
1
-0
/
+1
*
Serialize `#pragma detect_mismatch`.
Nico Weber
2016-03-02
1
-0
/
+24
*
Serialize `#pragma comment`.
Nico Weber
2016-03-02
1
-0
/
+23
*
[OpenCL] Disable C99 standard lib functions
Anastasia Stulova
2016-02-12
1
-0
/
+6
*
[MS Compat] Don't crash if __GetExceptionInfo is in global scope
David Majnemer
2016-01-26
1
-2
/
+1
*
Fix infinite recursion for invalid declaration, by Dmitry Polukhin
Alexey Bataev
2016-01-12
1
-1
/
+1
*
PR26048, PR26050: put non-type template parameters and indirect field decls
Richard Smith
2016-01-06
1
-2
/
+12
*
[ptr-traits] Move methods manipulating PointerUnions, DenseMap pointer
Chandler Carruth
2015-12-30
1
-0
/
+34
*
[ptr-traits] Stop using two bogus types as stand-ins for flags
Chandler Carruth
2015-12-30
1
-6
/
+85
*
Model NamespaceAliasDecls as having their nominated namespace as an underlying
Richard Smith
2015-12-29
1
-0
/
+3
*
Print qualified display names when emitting CodeView
Reid Kleckner
2015-12-16
1
-2
/
+4
*
[modules] Allow "redefinition" of typedef of anon tag from unimported submodule
Ben Langmuir
2015-11-14
1
-1
/
+2
*
[modules] Follow the C++ standard's rule for linkage of enumerators: they have
Richard Smith
2015-11-13
1
-1
/
+4
*
[modules] Simplify and generalize the existing rule for finding hidden
Richard Smith
2015-11-12
1
-2
/
+32
*
Implement __attribute__((internal_linkage)).
Evgeniy Stepanov
2015-11-10
1
-0
/
+8
*
Use "auto" when the type name is redundant
Alexander Kornienko
2015-11-09
1
-91
/
+79
*
Adjust printQualifiedName to handle unscoped enums in a way similar to anonym...
Alexander Kornienko
2015-11-09
1
-0
/
+9
*
[modules] Rationalize the behavior of Decl::declarationReplaces, and in
Richard Smith
2015-11-03
1
-54
/
+30
*
[MSVC Compat] Enable ABI impacting non-conforming behavior independently of -...
David Majnemer
2015-10-08
1
-1
/
+2
*
[OpenCL 2.0] Enable program scope variables, Section 6.5.1.
Anastasia Stulova
2015-09-30
1
-1
/
+0
*
[MS ABI] Correctly mangle classes without names for linkage purposes
David Majnemer
2015-08-31
1
-4
/
+4
*
Convert a few classes over to use the new TrailingObjects helper.
James Y Knight
2015-08-06
1
-28
/
+28
*
function_ref-ize ExternalASTSource::FindExternalLexicalDecl and remove its
Richard Smith
2015-08-05
1
-14
/
+4
*
[AST] ArrayRefize template param list info setters. No functionality change i...
Benjamin Kramer
2015-08-05
1
-22
/
+14
*
[AST] ArrayRefize BlockDecl::setCaptures. No functionality change intended.
Benjamin Kramer
2015-08-05
1
-17
/
+8
*
Fix alignment issues in Clang.
James Y Knight
2015-07-17
1
-3
/
+3
*
[OpenMP] Add TLS-based implementation for threadprivate directive.
Samuel Antao
2015-07-13
1
-4
/
+8
*
[MS ABI] Don't generates code for unreferenced inline definitions of library ...
David Majnemer
2015-07-10
1
-2
/
+2
*
Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").
Alexander Kornienko
2015-06-22
1
-1
/
+1
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-22
1
-1
/
+1
*
[ASan] Initial support for Kernel AddressSanitizer
Alexander Potapenko
2015-06-19
1
-1
/
+2
*
[AST] Put VarDeclBitfields on a diet
David Majnemer
2015-05-19
1
-0
/
+2
*
[modules] Add local submodule visibility support for declarations.
Richard Smith
2015-05-15
1
-3
/
+16
*
[MS ABI] __declspec(thread) behaves like thread_local in MSVC 2015
David Majnemer
2015-05-14
1
-3
/
+6
*
[AST] hasAttr followed by getAttr isn't efficient
David Majnemer
2015-05-14
1
-2
/
+5
*
De-virtualize some const versions of getCanonicalDecl by redirecting to the n...
Craig Topper
2015-05-10
1
-4
/
+0
*
Wrap to 80 columns, fix typo in comment. No behavior change.
Nico Weber
2015-04-22
1
-7
/
+7
*
Follow-up to r235046: selectany only causes a definition if it's not inherited.
Nico Weber
2015-04-17
1
-1
/
+2
*
Don't crash when a selectany symbol would get common linkage
Nico Weber
2015-04-15
1
-3
/
+3
*
clang-format a line containing nothing but a "{". No behavior change.
Nico Weber
2015-04-15
1
-3
/
+2
*
Make __declspec(selectany) turn variable declartions into definitions.
Nico Weber
2015-04-15
1
-2
/
+2
*
Properly implement warn_unused_result checking for classes/structs.
Kaelyn Takata
2015-04-09
1
-0
/
+12
*
Replace copy loop with std::copy.
Benjamin Kramer
2015-04-05
1
-2
/
+1
*
Partially revert "Replace custom alignment enforcement with LLVM_ALIGNAS."
Benjamin Kramer
2015-04-02
1
-2
/
+4
*
Replace custom alignment enforcement with LLVM_ALIGNAS.
Benjamin Kramer
2015-04-02
1
-4
/
+4
*
[modules] Handle defining a tag with a typedef name for linkage purposes on t...
Richard Smith
2015-03-27
1
-0
/
+8
*
C++14: Disable sized deallocation by default due to ABI breakage
Reid Kleckner
2015-03-20
1
-33
/
+0
*
Don't crash-on-valid when an inline function is friend of class template
David Majnemer
2015-03-20
1
-1
/
+2
[next]