aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/cxx-decl.cpp
AgeCommit message (Expand)Author
2013-02-22Don't accidentally and silently accept C++11 attributes in decl-specifier-seqsRichard Smith
2013-01-29PR15017: A '>' can appear after a type-specifier in a template-argument-list.Richard Smith
2013-01-26Give a more informative error message when the dot or arrow operator is usedRichard Trieu
2013-01-19Fix five more cases of tokens which can legally follow a type specifier.Richard Smith
2013-01-18Fix parsing of class specifiers before '\n' 'operator'.Nico Weber
2012-11-15PR9903: Recover from a member functon declared with the 'typedef' specifier byRichard Smith
2012-08-28Splitting the duplicated decl spec extension warning into two: one is an ExtW...Aaron Ballman
2012-08-18PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers andRichard Smith
2012-07-23Add diagnostics for comma at end of enum and for extra semicolon at namespaceRichard Smith
2011-10-19Improve the diagnostic when a comma ends up at the end of a declarator groupRichard Smith
2011-04-19Avoid superfluous warning after an error is detcted and reported.Fariborz Jahanian
2010-11-16Emit a specific diagnostic when typedefing C++ bool, mirroring gcc.Argyrios Kyrtzidis
2010-11-09fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being...Chris Lattner
2010-08-16Fix a crash when parsing malformed out-of-line member function Fariborz Jahanian
2010-06-13Allow an asm label specifier on C++ methods, like GCC does.Chris Lattner
2010-04-05fix PR6782, an accept invalid. We weren't emitting the diagnostic Chris Lattner
2010-03-01Don't infinite-loop if TryAnnotateCXXScopeToken fails to annotate but doesn'tJohn McCall
2010-02-02improve diagnostics for C++ struct ; issues. Before:Chris Lattner
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-10If we enter parens, colons can become un-sacred, allowing us to emitChris Lattner
2009-12-10fix a more evil case of : / :: confusion arising in ?:.Chris Lattner
2009-12-10fix incorrect parsing of bitfields pointed out by Doug. I choseChris Lattner
2009-12-07reapply my patch for PR4451, which improves diagnostics for :: vs : confusion.Chris Lattner
2009-12-06revert my previous patch, it is breaking something and I don't have timeChris Lattner
2009-12-06implement PR4451, improving error recovery for a mistaken : where a :: wasChris Lattner
2009-04-12Fix some C++ error recovery problems in init declarator parsingChris Lattner