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