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
/
Parse
/
ParseDecl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Bug Fix: Template explicit instantiations should not have definitions (FixIts...
Larisse Voufo
2013-06-21
1
-0
/
+1
*
C++11: don't warn about the deprecated 'register' keyword if it's combined with
Richard Smith
2013-06-17
1
-7
/
+0
*
Suppress the c++11 -Wdeprecated warning for 'register' if it is expanded from a
Richard Smith
2013-06-14
1
-1
/
+5
*
Add -Wdeprecated warnings and fixits for things deprecated in C++11:
Richard Smith
2013-06-13
1
-0
/
+3
*
Recognition of empty structures and unions is moved to semantic stage
Serge Pavlov
2013-06-08
1
-6
/
+0
*
PR16243: Use CXXThisOverride during template instantiation, and fix up the
Richard Smith
2013-06-07
1
-3
/
+2
*
Adding in parsing and the start of semantic support for __sptr and __uptr poi...
Aaron Ballman
2013-05-22
1
-1
/
+8
*
Use only explicit bool conversion operator
David Blaikie
2013-05-15
1
-1
/
+1
*
Properly parsing __declspec(safebuffers), though there is no semantic hookup....
Aaron Ballman
2013-05-04
1
-0
/
+1
*
Use attribute argument information to determine when to parse attribute argum...
Douglas Gregor
2013-05-02
1
-0
/
+10
*
Revert r180970; it's causing breakage.
Douglas Gregor
2013-05-02
1
-10
/
+0
*
Use attribute argument information to determine when to parse attribute argum...
Douglas Gregor
2013-05-02
1
-0
/
+10
*
Fix PR15845: apparently MSVC does not support implicit int in C++ mode.
Richard Smith
2013-04-30
1
-3
/
+2
*
ArrayRef'ize Sema::ActOnEnumBody. No functionality change.
Dmitri Gribenko
2013-04-27
1
-2
/
+2
*
Implement C++1y decltype(auto).
Richard Smith
2013-04-26
1
-2
/
+1
*
Warn that scoped enumerations are a C++11 extenstion when compiling in
Richard Trieu
2013-04-23
1
-3
/
+3
*
The 'constexpr implies const' rule for non-static member functions is gone in
Richard Smith
2013-04-21
1
-1
/
+2
*
[Parser] Handle #pragma pack/align inside C structs.
Argyrios Kyrtzidis
2013-04-18
1
-0
/
+10
*
Fix PR4296: Add parser detection/error recovery for nested functions, from Se...
Douglas Gregor
2013-04-16
1
-20
/
+27
*
Basic support for Microsoft property declarations and
John McCall
2013-04-16
1
-10
/
+112
*
Parsing support for thread_local and _Thread_local. We give them the same
Richard Smith
2013-04-12
1
-4
/
+18
*
<rdar://problem/13540921> Fix a crasher when an Objective-C for-in loop gets ...
Douglas Gregor
2013-04-08
1
-7
/
+16
*
Enable use of _Static_assert inside structs and unions in C11 mode (as per C1...
Andy Gibbs
2013-04-03
1
-0
/
+7
*
Assert that Parser::ParseStructUnionBody is not called for C++ code.
Andy Gibbs
2013-04-03
1
-3
/
+3
*
PR15633: Note that we are EnteringContext when parsing the nested name
Richard Smith
2013-04-01
1
-1
/
+1
*
Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar...
Richard Smith
2013-03-28
1
-11
/
+32
*
[Parser] Don't code-complete twice.
Argyrios Kyrtzidis
2013-03-27
1
-1
/
+1
*
PR15290: 'this' is not permitted in the declaration of a friend function,
Richard Smith
2013-03-15
1
-4
/
+6
*
Remove unused variable.
Benjamin Kramer
2013-03-08
1
-1
/
+0
*
Add support for the OpenCL attribute 'vec_type_hint'.
Joey Gouly
2013-03-08
1
-10
/
+37
*
Don't accidentally and silently accept C++11 attributes in decl-specifier-seqs
Richard Smith
2013-02-22
1
-1
/
+1
*
Per the grammar in [dcl.dcl]p1, a simple-declaration can only have attributes
Richard Smith
2013-02-22
1
-2
/
+3
*
Handle alignas(foo...) pack expansions.
Richard Smith
2013-02-22
1
-10
/
+4
*
PR15311: Finish implementation of the suggested resolution of core issue 1488,
Richard Smith
2013-02-20
1
-0
/
+7
*
Process and handle attributes on conditions and for loop variables. Process and
Richard Smith
2013-02-20
1
-1
/
+4
*
Don't repeat the function name in the comment.
Richard Smith
2013-02-20
1
-4
/
+4
*
PR15300: Support C++11 attributes on base-specifiers. We don't support any such
Richard Smith
2013-02-19
1
-0
/
+19
*
Accept over-qualified constructor in MSVC emulation mode
Dmitri Gribenko
2013-02-12
1
-6
/
+3
*
Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h.
Jordan Rose
2013-02-08
1
-3
/
+4
*
Thread safety analysis: make sure that expressions in attributes are parsed
DeLesley Hutchins
2013-02-07
1
-0
/
+1
*
Add OpenCL samplers as Clang builtin types and check sampler related restrict...
Guy Benyei
2013-02-07
1
-0
/
+7
*
Downgrade 'attribute ignored when parsing type' from error to warning, to match
Richard Smith
2013-01-29
1
-1
/
+1
*
Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas.
Richard Smith
2013-01-29
1
-0
/
+3
*
Treat alignas and _Alignas as keyword attributes. This allows us to
Richard Smith
2013-01-29
1
-10
/
+6
*
Replace AS_MSTypespec with AS_Keyword, for representing any attribute spelled
Richard Smith
2013-01-29
1
-5
/
+7
*
Finish semantic analysis for [[carries_dependency]] attribute.
Richard Smith
2013-01-28
1
-2
/
+7
*
Give a more informative error message when the dot or arrow operator is used
Richard Trieu
2013-01-26
1
-3
/
+6
*
Implement OpenCL event_t as Clang builtin type, including event_t related Ope...
Guy Benyei
2013-01-20
1
-0
/
+7
*
Parsing support for C11's _Noreturn keyword. No semantics yet.
Richard Smith
2013-01-17
1
-0
/
+6
*
Implement C++11 semantics for [[noreturn]] attribute. This required splitting
Richard Smith
2013-01-17
1
-0
/
+2
[next]