| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Clean up ownership of 'AttributeList' objects in Parser. Apparently | Ted Kremenek | 2010-02-11 | 1 | -2/+2 |
* | When placing an annotation token over an existing annotation token, make sure... | Sebastian Redl | 2010-02-08 | 1 | -1/+2 |
* | Fix assertion failure when parsing linkage specifications (PR5921), | Douglas Gregor | 2010-02-07 | 1 | -1/+0 |
* | First stage of adding AltiVec support | John Thompson | 2010-02-05 | 1 | -0/+5 |
* | Fixit to remove 'volatile' in file-scope 'asm volatile'. | John McCall | 2010-01-25 | 1 | -1/+6 |
* | Warn on top-level 'asm volatile' (instead of misparsing it). | John McCall | 2010-01-25 | 1 | -0/+5 |
* | allow the HandlerComment callback to push tokens into the | Chris Lattner | 2010-01-18 | 1 | -1/+2 |
* | Whenever completing ordinary names for an Objective-C source, also | Douglas Gregor | 2010-01-13 | 1 | -1/+3 |
* | Reimplement constructor declarator parsing to cope with template-ids | Douglas Gregor | 2010-01-13 | 1 | -1/+1 |
* | Improve code completion by introducing patterns for the various C and | Douglas Gregor | 2010-01-10 | 1 | -1/+1 |
* | Teach TryAnnotateTypeOrScopeToken to deal with already-annotated | John McCall | 2009-12-19 | 1 | -4/+9 |
* | refactor the 'ColonIsSacred' argument to ParseOptionalCXXScopeSpecifier | Chris Lattner | 2009-12-10 | 1 | -1/+2 |
* | rename ExtensionRAIIObject.h -> RAIIObjectsForParser.h | Chris Lattner | 2009-12-10 | 1 | -1/+1 |
* | Fixes a bogus error when declaring an extern "C" array. | Fariborz Jahanian | 2009-12-09 | 1 | -3/+10 |
* | fix a crash on invalid I found when working on something unrelated. | Chris Lattner | 2009-12-07 | 1 | -1/+3 |
* | simplify logic. | Chris Lattner | 2009-12-06 | 1 | -6/+7 |
* | remove some extraneous syntax: sourceloc implicitly converts to sourcerange. | Chris Lattner | 2009-12-06 | 1 | -1/+1 |
* | Added rudimentary C++0x attribute support. | Alexis Hunt | 2009-11-21 | 1 | -8/+19 |
* | Improve parsing of template arguments to lay the foundation for | Douglas Gregor | 2009-11-10 | 1 | -0/+1 |
* | Change our basic strategy for avoiding deprecation warnings when the decl use | John McCall | 2009-11-04 | 1 | -2/+13 |
* | Implement support for parsing dependent template-ids that refer to | Douglas Gregor | 2009-11-04 | 1 | -2/+5 |
* | Parsing and semantic analysis for template-ids that name overloaded | Douglas Gregor | 2009-11-03 | 1 | -2/+3 |
* | Silence a warning by giving Parser::FieldCallback a virtual destructor, and | John McCall | 2009-11-03 | 1 | -0/+7 |
* | Reorganize the parsing of decl groups / function definitions so that | John McCall | 2009-11-03 | 1 | -48/+2 |
* | Don't crash when dumping pretty stack traces, if the current tok is an | Daniel Dunbar | 2009-10-17 | 1 | -1/+4 |
* | Code completion for ordinary names when we're starting a declaration, express... | Douglas Gregor | 2009-09-21 | 1 | -0/+4 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -46/+46 |
* | Parse extern templates, pass that information all the way to Sema, | Douglas Gregor | 2009-09-04 | 1 | -0/+15 |
* | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor | 2009-09-02 | 1 | -5/+8 |
* | Improve support for out-of-line definitions of nested templates and | Douglas Gregor | 2009-08-25 | 1 | -6/+6 |
* | Eliminate a GCC warning | Douglas Gregor | 2009-08-25 | 1 | -1/+1 |
* | Keep track of the template parameter depth properly when we have | Douglas Gregor | 2009-08-24 | 1 | -1/+1 |
* | Top-level semicolons are allowed in C++0x. Fixes PR4755. | Douglas Gregor | 2009-08-24 | 1 | -3/+8 |
* | Refactor methods on DeclSpec to take a diagnostic& parameter, and reflect this | John McCall | 2009-08-03 | 1 | -3/+5 |
* | sp. | John McCall | 2009-07-31 | 1 | -1/+1 |
* | Patch to accomodate Doug's comment on default | Fariborz Jahanian | 2009-07-21 | 1 | -1/+1 |
* | Added ASTs to destructor decl AST for default destruction of object's | Fariborz Jahanian | 2009-07-15 | 1 | -1/+1 |
* | Build AST for default ctor-initializer when constructor has | Fariborz Jahanian | 2009-07-14 | 1 | -0/+2 |
* | Add support for retrieving the Doxygen comment associated with a given | Douglas Gregor | 2009-07-02 | 1 | -0/+17 |
* | Fix screwup with my previous patch which broke tests. (The patch is | Eli Friedman | 2009-06-27 | 1 | -1/+1 |
* | Fix a crash with constructs like x<false>() in C++. No testcase because | Eli Friedman | 2009-06-27 | 1 | -1/+1 |
* | fix PR4452, a crash on invalid. The error recovery is still terrible in this... | Chris Lattner | 2009-06-26 | 1 | -3/+10 |
* | Make sure that the template parameter lists get from the parser down to ActOn... | Douglas Gregor | 2009-06-24 | 1 | -2/+9 |
* | Add parser support for #pragma weak. | Eli Friedman | 2009-06-05 | 1 | -0/+6 |
* | Reimplement much of the way that we track nested classes in the | Douglas Gregor | 2009-05-27 | 1 | -3/+0 |
* | Implement parsing for explicit instantiations of class templates, e.g., | Douglas Gregor | 2009-05-12 | 1 | -1/+1 |
* | Parser::ParseDeclarationOrFunctionDefinition no longer needs to accept | Douglas Gregor | 2009-05-12 | 1 | -4/+2 |
* | Refactor the parsing of declarations so that template declarations can | Douglas Gregor | 2009-05-12 | 1 | -15/+26 |
* | Implement function-try-blocks. However, there's a very subtle bug that I can'... | Sebastian Redl | 2009-04-26 | 1 | -5/+8 |
* | fix a FIXME, providing accurate source range info for DeclStmt's. The end | Chris Lattner | 2009-04-02 | 1 | -1/+4 |