| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 1 | -1/+1 |
* | C1X: implement static asserts | Peter Collingbourne | 2011-04-15 | 1 | -5/+13 |
* | Parse an '@' in an Objective-C++ class member specification, | Douglas Gregor | 2011-04-14 | 1 | -0/+11 |
* | Fixup comments. | Anders Carlsson | 2011-03-25 | 1 | -1/+1 |
* | Remove the last of ClassVirtSpecifiers. | Anders Carlsson | 2011-03-25 | 1 | -53/+14 |
* | Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only... | Anders Carlsson | 2011-03-25 | 1 | -5/+18 |
* | Get rid of handling of the 'explicit' keyword from class-head. We still parse... | Anders Carlsson | 2011-03-25 | 1 | -1/+4 |
* | Remove 'new' from virt-specifier since it's going to be removed in the next C... | Anders Carlsson | 2011-03-25 | 1 | -4/+0 |
* | Insomniac refactoring: change how the parser allocates attributes so that | John McCall | 2011-03-24 | 1 | -19/+17 |
* | Use ElaboratedType also for C. | Abramo Bagnara | 2011-03-16 | 1 | -7/+5 |
* | Propagate the new exception information to FunctionProtoType. | Sebastian Redl | 2011-03-12 | 1 | -3/+8 |
* | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -2/+2 |
* | Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source ran... | Abramo Bagnara | 2011-03-08 | 1 | -4/+5 |
* | Fixed NamespaceDecl source range. | Abramo Bagnara | 2011-03-08 | 1 | -2/+2 |
* | Parser support for noexcept specifications. | Sebastian Redl | 2011-03-05 | 1 | -17/+84 |
* | Push nested-name-specifier source-location information into dependent | Douglas Gregor | 2011-03-02 | 1 | -19/+19 |
* | Reinstate the introduction of source-location information for | Douglas Gregor | 2011-03-01 | 1 | -1/+3 |
* | Revert r126748, my second attempt at nested-name-specifier source | Douglas Gregor | 2011-03-01 | 1 | -3/+1 |
* | Reinstate r126737, extending the generation of type-source location | Douglas Gregor | 2011-03-01 | 1 | -1/+3 |
* | When parsing an out-of-line member function declaration, we must delay | John McCall | 2011-02-14 | 1 | -2/+6 |
* | PR9037: Allow override, final, and new as an extension on inline members. | Nico Weber | 2011-01-28 | 1 | -2/+5 |
* | Get rid of [[hiding]], [[override]] and [[base_check]]. | Anders Carlsson | 2011-01-23 | 1 | -4/+1 |
* | Get rid of the [[final]] C++0x attribute. | Anders Carlsson | 2011-01-23 | 1 | -1/+0 |
* | Accept the C++0x override control keywords as an extension in C++98. This is ... | Anders Carlsson | 2011-01-22 | 1 | -2/+10 |
* | Mark classes as final or explicit. Diagnose when a class marked 'final' is us... | Anders Carlsson | 2011-01-22 | 1 | -1/+2 |
* | Parse class-virt-specifier-seqs. | Anders Carlsson | 2011-01-22 | 1 | -11/+69 |
* | More work on ClassVirtSpecifiers. | Anders Carlsson | 2011-01-22 | 1 | -1/+1 |
* | Pass the VirtSpecifiers along to Sema::ActOnCXXMemberDeclarator. | Anders Carlsson | 2011-01-20 | 1 | -1/+1 |
* | Lazily initialize the 'final' and 'override' contextual keywords as suggested... | Anders Carlsson | 2011-01-20 | 1 | -0/+6 |
* | Parse the optional semicolon after a C++ in-class member function | Douglas Gregor | 2011-01-19 | 1 | -0/+12 |
* | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin | 2011-01-18 | 1 | -2/+1 |
* | Remove dead code. | Anders Carlsson | 2011-01-17 | 1 | -5/+0 |
* | Change ParseOptionalCXX0XVirtSpecifierSeq to take a VirtSpecifiers struct. | Anders Carlsson | 2011-01-17 | 1 | -8/+31 |
* | Begin work on supporting "N3206: Override control: Eliminating Attributes", from | Anders Carlsson | 2011-01-16 | 1 | -1/+45 |
* | Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, | Alexis Hunt | 2011-01-08 | 1 | -1/+1 |
* | Implement pack expansion of base initializers, so that we can | Douglas Gregor | 2011-01-04 | 1 | -3/+8 |
* | Implement pack expansions whose pattern is a base-specifier. | Douglas Gregor | 2011-01-03 | 1 | -1/+8 |
* | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall | 2010-12-24 | 1 | -88/+59 |
* | Extend the parser to support pack expansions within exception | Douglas Gregor | 2010-12-20 | 1 | -2/+13 |
* | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -1/+1 |
* | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara | 2010-12-03 | 1 | -1/+1 |
* | In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see | Craig Silverstein | 2010-11-18 | 1 | -1/+1 |
* | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek | 2010-11-10 | 1 | -16/+16 |
* | Diagnose attempst to template using declarations and using directives. | John McCall | 2010-11-10 | 1 | -14/+42 |
* | tidy up | Chris Lattner | 2010-11-09 | 1 | -5/+5 |
* | fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being... | Chris Lattner | 2010-11-09 | 1 | -1/+0 |
* | Tag references shouldn't ever get template parameter lists. | John McCall | 2010-10-19 | 1 | -4/+9 |
* | Redirect templated friend class decls to a new Sema callback and | John McCall | 2010-10-19 | 1 | -3/+14 |
* | Parse default arguments within member functions in source order, from | Douglas Gregor | 2010-10-12 | 1 | -9/+7 |
* | Add parsing support for Microsoft attributes. MS attributes will just be skip... | Francois Pichet | 2010-10-11 | 1 | -0/+26 |