summaryrefslogtreecommitdiff
path: root/test/Parser/cxx0x-attributes.cpp
AgeCommit message (Expand)Author
2017-12-25Add a fixit for attributes incorrectly placed prior to 'struct/class/enum' ke...Faisal Vali
2017-11-26Determine the attribute subject for diagnostics based on declarative informat...Aaron Ballman
2017-10-14Fix backwards warning for use of C++17 attributes-on-namespaces-and-enumerato...Richard Smith
2017-08-13Replace remaining user-visible mentions of C++1z with C++17.Richard Smith
2017-02-08Fix constructor declarator detection for the case when the name is followed byRichard Smith
2016-03-08Silence duplicate diagnostics because parsing of a standards-based attribute ...Aaron Ballman
2016-03-08P0188R1: add support for standard [[fallthrough]] attribute. This is almostRichard Smith
2015-10-08[Sema] Tweak incomplete enum types on MSVC ABI targetsDavid Majnemer
2015-10-08Update tests touched by r249656David Majnemer
2015-03-29[parse] Don't crash on alternative operator spellings from macros in c++11 at...Benjamin Kramer
2015-02-16Minor tweaks to r229447 to ensure the attribute is properly quoted when diagn...Aaron Ballman
2015-02-16Sema: diagnose use of unscoped deprecated prior to C++14Saleem Abdulrasool
2015-01-09Parse: Don't crash when an annotation token shows up in a C++11 attrDavid Majnemer
2014-12-29Crash even less on malformed attributes in an incorrect location.Nico Weber
2014-12-29Don't crash on malformed attributes in an incorrect location.Nico Weber
2014-11-08Updated the wording for a diagnostic to be more grammatically correct, and us...Aaron Ballman
2014-11-08[c++1z] Support for attributes on namespaces and enumerators.Aaron Ballman
2014-04-15Fixing a typo, updating the diagnostic wording and logic based on post-commit...Aaron Ballman
2014-04-14Properly diagnose standard C++ attributes which have optional argument lists ...Aaron Ballman
2014-03-31Introduced an attribute syntax-neutral method for parsing attribute arguments...Aaron Ballman
2013-11-30add an additional test case for generic attributesSaleem Abdulrasool
2013-11-27Adding the Subjects entry back for the noreturn attributes. This caused some ...Aaron Ballman
2013-10-29Add missing attributes [[gnu::no_sanitize_address]] andNick Lewycky
2013-10-29Treat [[gnu::__const]] the same as [[gnu::const]]. GCC's tokenizer can't tellNick Lewycky
2013-10-15Tidy up and improve error recovery for C++11 attributes in bad places. Based onRichard Smith
2013-09-06C++11 attributes after 'constructor-name (' unambiguously signal that we have aRichard Smith
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