Skip to content
  • Alexis Hunt's avatar
    6aa9beef
    Clean up a large number of C++11 attribute parse issues, including parsing · 6aa9beef
    Alexis Hunt authored
    attributes in more places where we didn't and catching a lot more issues.
    
    This implements nearly every aspect of C++11 attribute parsing, except for:
     - Attributes are permitted on explicit instantiations inside the declarator
       (but not preceding the decl-spec)
     - Attributes are permitted on friend declarations of functions.
     - Multiple instances of the same attribute in an attribute-list (e.g.
       [[noreturn, noreturn]], not [[noreturn]] [[noreturn]] which is conforming)
       are allowed.
    The first two are marked as expected-FIXME in the test file and the latter
    is probably a defect and is currently untested.
    
    Thanks to Richard Smith for providing the lion's share of the testcases.
    
    llvm-svn: 159072
    6aa9beef
    Clean up a large number of C++11 attribute parse issues, including parsing
    Alexis Hunt authored
    attributes in more places where we didn't and catching a lot more issues.
    
    This implements nearly every aspect of C++11 attribute parsing, except for:
     - Attributes are permitted on explicit instantiations inside the declarator
       (but not preceding the decl-spec)
     - Attributes are permitted on friend declarations of functions.
     - Multiple instances of the same attribute in an attribute-list (e.g.
       [[noreturn, noreturn]], not [[noreturn]] [[noreturn]] which is conforming)
       are allowed.
    The first two are marked as expected-FIXME in the test file and the latter
    is probably a defect and is currently untested.
    
    Thanks to Richard Smith for providing the lion's share of the testcases.
    
    llvm-svn: 159072
Loading