| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Improve error recovery when presented with an ill-formed template-id | John McCall | 2010-07-30 | 1 | -5/+9 |
* | Add source location information to C++ base specifiers. | Nick Lewycky | 2010-07-26 | 1 | -3/+14 |
* | Treat template parameters as part of the declaration-specifiers for the | John McCall | 2010-07-16 | 1 | -4/+7 |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -37/+37 |
* | Partial fix for PR7267 based on comments by John McCall on an earlier patch. | Chandler Carruth | 2010-06-28 | 1 | -0/+22 |
* | When semantic analysis fail to introduce a class or class template, | Douglas Gregor | 2010-06-21 | 1 | -30/+35 |
* | When parsing cached C++ method declarations/definitions, save the | Douglas Gregor | 2010-06-16 | 1 | -0/+2 |
* | Make the "extra ';' inside a struct or union" diagnostic more | Douglas Gregor | 2010-06-16 | 1 | -0/+1 |
* | Allow an asm label specifier on C++ methods, like GCC does. | Chris Lattner | 2010-06-13 | 1 | -2/+11 |
* | Added AccessSpecDecl node. | Abramo Bagnara | 2010-06-05 | 1 | -1/+6 |
* | Don't try to parse class template specializations in C. It can only | Douglas Gregor | 2010-05-30 | 1 | -3/+1 |
* | Don't just skip over the entire tag definition if the parser action didn't | John McCall | 2010-05-28 | 1 | -10/+8 |
* | Improve code completion in failure cases in two ways: | Douglas Gregor | 2010-05-25 | 1 | -5/+5 |
* | Propagate access specifiers to anonymous union members nested within classes. | John McCall | 2010-05-21 | 1 | -1/+1 |
* | mutable is a storage class that can follow a class/struct/union definition. F... | Douglas Gregor | 2010-05-17 | 1 | -0/+1 |
* | Namespaces can only be defined at global or namespace scope. Fixes PR6596. | Douglas Gregor | 2010-05-14 | 1 | -0/+8 |
* | Replace a char*/size pair with stringref. | Benjamin Kramer | 2010-05-03 | 1 | -1/+1 |
* | Parse friend template ids as types instead of ending up in | John McCall | 2010-04-14 | 1 | -4/+8 |
* | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin | 2010-04-08 | 1 | -1/+1 |
* | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor | 2010-03-31 | 1 | -3/+3 |
* | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor | 2010-03-31 | 1 | -3/+3 |
* | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor | 2010-03-31 | 1 | -3/+3 |
* | Support __attribute__((packed)) (along with other attributes) at the | Douglas Gregor | 2010-03-29 | 1 | -2/+3 |
* | Clean up after ourselves when there's an error parsing the base clause. | John McCall | 2010-03-17 | 1 | -2/+5 |
* | Audit all Preprocessor::getSpelling() callers, improving failure | Douglas Gregor | 2010-03-16 | 1 | -1/+4 |
* | Use SmallString instead of SmallVector | Kovarththanan Rajaratnam | 2010-03-13 | 1 | -47/+47 |
* | Fix an amusing typo that completely the re-introduction of parameters | Douglas Gregor | 2010-03-02 | 1 | -1/+1 |
* | Add comment | Douglas Gregor | 2010-03-02 | 1 | -1/+2 |
* | When we're parsing template names as part of base-specifiers, we are | Douglas Gregor | 2010-03-01 | 1 | -1/+1 |
* | Implement PR6423 by using one token of lookahead to disambiguate | Chris Lattner | 2010-02-28 | 1 | -9/+32 |
* | Add an overload of Preprocessor::getSpelling which takes a SmallVector and | Benjamin Kramer | 2010-02-27 | 1 | -4/+2 |
* | Fix an assertion-on-error during tentative constructor parsing by | John McCall | 2010-02-26 | 1 | -2/+3 |
* | Improve parsing and instantiation of destructor names, so that we can | Douglas Gregor | 2010-02-16 | 1 | -4/+2 |
* | Clean up ownership of 'AttributeList' objects in Parser. Apparently | Ted Kremenek | 2010-02-11 | 1 | -9/+9 |
* | Fix assertion failure when parsing linkage specifications (PR5921), | Douglas Gregor | 2010-02-07 | 1 | -0/+2 |
* | Add attributes to namespace decls. | Anders Carlsson | 2010-02-07 | 1 | -2/+2 |
* | In some contexts, type declarations cannot occur. Pass this information down ... | Sebastian Redl | 2010-02-03 | 1 | -3/+11 |
* | Declarators can have grouping parens. This fixes rdar://7608537. | Chris Lattner | 2010-02-03 | 1 | -0/+1 |
* | fix PR6216 | Chris Lattner | 2010-02-03 | 1 | -0/+1 |
* | the declspec of a declaration can have storage-class specifiers, | Chris Lattner | 2010-02-02 | 1 | -7/+18 |
* | Implement PR6180, substantially improving the diagnostics we get from | Chris Lattner | 2010-02-02 | 1 | -1/+38 |
* | improve diagnostics for C++ struct ; issues. Before: | Chris Lattner | 2010-02-02 | 1 | -12/+8 |
* | Rework base and member initialization in constructors, with several | Douglas Gregor | 2010-01-31 | 1 | -3/+7 |
* | Move the type specifier location for elaborated-type-specifiers from | Douglas Gregor | 2010-01-25 | 1 | -1/+5 |
* | Implement elementary access control. | John McCall | 2010-01-23 | 1 | -1/+1 |
* | While determining when to parse inline member functions of a class, | Douglas Gregor | 2010-01-16 | 1 | -8/+28 |
* | Improve recovery for template-ids whose template-name doesn't actually | Douglas Gregor | 2010-01-12 | 1 | -6/+45 |
* | Parse dependent template-ids in base clauses and member | Douglas Gregor | 2010-01-12 | 1 | -3/+4 |
* | Don't inject the class name until that magical lbrace. | John McCall | 2009-12-20 | 1 | -0/+2 |
* | Parse base specifiers within the scope of the class. This is possibly not | John McCall | 2009-12-19 | 1 | -12/+18 |