index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Parser
/
cxx0x-attributes.cpp
Age
Commit message (
Expand
)
Author
2013-02-22
[Sema] Semantic analysis for empty-declaration and attribute-declaration.
Michael Han
2013-02-22
Per the grammar in [dcl.dcl]p1, a simple-declaration can only have attributes
Richard Smith
2013-02-20
Process and handle attributes on conditions and for loop variables. Process and
Richard Smith
2013-01-29
Downgrade 'attribute ignored when parsing type' from error to warning, to match
Richard Smith
2013-01-17
Implement C++11 semantics for [[noreturn]] attribute. This required splitting
Richard Smith
2013-01-14
Accept [[gnu::*]] for all __attribute__((*))s which are:
Richard Smith
2013-01-07
Add fixit hints for misplaced C++11 attributes around class specifiers.
Michael Han
2012-11-28
Implement C++11 [dcl.attr.grammar] p4: If an attribute-specifier-seq appertai...
Michael Han
2012-11-26
Improve diagnostic on C++11 attribute specifiers that appear at wrong syntact...
Michael Han
2012-11-06
Teach Clang parser to reject C++11 attributes that appertain to declaration s...
Michael Han
2012-10-03
Improve C++11 attribute parsing.
Michael Han
2012-06-23
Recognize GNU attributes after 'enum class'. Fixes the libc++ build.
John McCall
2012-06-23
Clean up a large number of C++11 attribute parse issues, including parsing
Sean Hunt
2012-04-11
Support C++11 attributes at the start of a parameter-declaration.
Richard Smith
2012-04-10
Parsing of C++11 attributes:
Richard Smith
2012-04-10
Disambiguation of '[[':
Richard Smith
2012-02-04
In C++11 mode, when an integral constant expression is desired and we have a
Richard Smith
2012-01-04
Stub out the Sema interface for lambda expressions, and change the parser to ...
Eli Friedman
2011-10-13
Update all tests other than Driver/std.cpp to use -std=c++11 rather than
Richard Smith
2011-09-29
Add support for alignment-specifiers in C1X and C++11, remove
Peter Collingbourne
2011-09-29
Add support for parsing an attribute-specifier-seq containing multiple
Peter Collingbourne
2011-09-29
Add support for parsing the optional attribute-specifier-seq at the
Peter Collingbourne
2011-08-04
Parsing of C++0x lambda expressions, from John Freeman with help from
Douglas Gregor
2011-02-28
Add -fcxx-exceptions to all tests that use C++ exceptions.
Anders Carlsson
2011-02-19
Pass -fexceptions to all tests that use try/catch/throw.
Anders Carlsson
2011-01-23
Get rid of the [[final]] C++0x attribute.
Anders Carlsson
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-11-21
Added rudimentary C++0x attribute support.
Sean Hunt