diff options
author | Michael Han <Michael.Han@autodesk.com> | 2012-11-06 19:34:54 +0000 |
---|---|---|
committer | Michael Han <Michael.Han@autodesk.com> | 2012-11-06 19:34:54 +0000 |
commit | f64231e9f47234826fbcdc3b4fe0370ef6c9961d (patch) | |
tree | 5bf2e20734f073f7ee51d2c152d39c5a83abf442 /include/clang | |
parent | fd9d0e13a17b915fa6b35e3a3465513d67f1482d (diff) |
Teach Clang parser to reject C++11 attributes that appertain to declaration specifiers.
We don't support any C++11 attributes that appertain to declaration specifiers so reject
the attributes in parser until we support them; this also conforms to what g++ 4.8 is doing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Parse/Parser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/clang/Parse/Parser.h b/include/clang/Parse/Parser.h index 3b8d5c8b9b..0968d9c276 100644 --- a/include/clang/Parse/Parser.h +++ b/include/clang/Parse/Parser.h @@ -1865,6 +1865,11 @@ private: } void DiagnoseProhibitedAttributes(ParsedAttributesWithRange &attrs); + // Forbid C++11 attributes that appear on certain syntactic + // locations which standard permits but we don't supported yet, + // for example, attributes appertain to decl specifiers. + void ProhibitCXX11Attributes(ParsedAttributesWithRange &attrs); + void MaybeParseGNUAttributes(Declarator &D, LateParsedAttrList *LateAttrs = 0) { if (Tok.is(tok::kw___attribute)) { |