Age | Commit message (Expand) | Author |
2009-07-01 | Two fixes to make Clang build on Visual C++ (again), from Alisdair Meredith. | Douglas Gregor |
2009-06-30 | Patch to support optional nested-name-specifier in in ctor-initializer | Fariborz Jahanian |
2009-06-30 | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor |
2009-06-27 | Make it possible for using decls to point to operators. Fixes PR4441. | Anders Carlsson |
2009-06-26 | Implement enough of the 'auto' keyword so we can claim to support N2546. | Anders Carlsson |
2009-06-26 | OpenCL 1.0 support: attributes | Nate Begeman |
2009-06-26 | fix PR4452, a crash on invalid. The error recovery is still terrible in this... | Chris Lattner |
2009-06-24 | Parse the C++0x decltype specifier. | Anders Carlsson |
2009-06-24 | Make sure that the template parameter lists get from the parser down to ActOn... | Douglas Gregor |
2009-06-23 | Start propagating template parameter lists to the right places to | Douglas Gregor |
2009-06-22 | Rework the way we track which declarations are "used" during | Douglas Gregor |
2009-06-20 | Parsing and AST support for using declarations, from John Thompson! | Douglas Gregor |
2009-06-19 | Keep track of when declarations are "used" according to C and | Douglas Gregor |
2009-06-17 | Implement correct name lookup inside an initializer of a C++ class static dat... | Argyrios Kyrtzidis |
2009-06-14 | Update LLVM. | Douglas Gregor |
2009-06-12 | add the location of the ')' in a do/while statement to DoStmt. | Chris Lattner |
2009-06-12 | Parse support for C++0x type parameter packs. | Anders Carlsson |
2009-06-12 | It's an error to use a function declared in a class definition as a default a... | Anders Carlsson |
2009-06-08 | Add more parser support for Microsoft extensions. | Eli Friedman |
2009-06-08 | Add real parsing for __declspec. It doesn't make much of a difference | Eli Friedman |
2009-06-05 | Use of DeclContext for objc's ivars. No functionality | Fariborz Jahanian |
2009-06-05 | Address review comments for #pragma weak. | Eli Friedman |
2009-06-05 | Add parser support for #pragma weak. | Eli Friedman |
2009-05-31 | Disallow exception specs on typedefs. | Sebastian Redl |
2009-05-30 | ActOnReturnStmt should also take a FullExprArg. | Anders Carlsson |
2009-05-30 | AddInitializerToDecl needs to take a full expression. | Anders Carlsson |
2009-05-29 | Reject incomplete types in exception specs. | Sebastian Redl |
2009-05-29 | If a declarator group declares a type, make sure to add that declaration | Eli Friedman |
2009-05-28 | When we parse a tag specifier, keep track of whether that tag | Douglas Gregor |
2009-05-27 | Reimplement much of the way that we track nested classes in the | Douglas Gregor |
2009-05-22 | Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate b... | Argyrios Kyrtzidis |
2009-05-22 | Factor the compound literal parsing out from ParseParenExpression and into a ... | Argyrios Kyrtzidis |
2009-05-22 | Modification to ParseParenExpression. | Argyrios Kyrtzidis |
2009-05-22 | Remove ParseSimpleParenExpression. | Argyrios Kyrtzidis |
2009-05-22 | Refactor the common code of 'ParseTypeofSpecifier' and 'ParseSizeofAlignofExp... | Argyrios Kyrtzidis |
2009-05-21 | Merge the ASTVector and ASTOwningVector templates, since they offered | Douglas Gregor |
2009-05-20 | Introduce a new kind of RAII class, ASTOwningVector, which is an | Douglas Gregor |
2009-05-20 | implementation of format_arg for ObjC methods/functions. | Fariborz Jahanian |
2009-05-19 | Add comment about FullExprArg. | Anders Carlsson |
2009-05-17 | Make ActOnWhileStmt take a FullExprArg for the condition expr. | Anders Carlsson |
2009-05-17 | Make ActOnExprStmt take a FullExprArg. | Anders Carlsson |
2009-05-17 | Fix DISABLE_SMART_POINTERS build. | Anders Carlsson |
2009-05-17 | Add the FullExprArg wrapper and use it for if statement conditions. | Anders Carlsson |
2009-05-16 | Implement a FIXME, we now pass in the locations of the braces for enums. | Mike Stump |
2009-05-14 | Implement explicit instantiations of member classes of class templates, e.g., | Douglas Gregor |
2009-05-12 | Implement parsing for explicit instantiations of class templates, e.g., | Douglas Gregor |
2009-05-12 | Parser::ParseDeclarationOrFunctionDefinition no longer needs to accept | Douglas Gregor |
2009-05-12 | Refactor the parsing of declarations so that template declarations can | Douglas Gregor |
2009-05-11 | Add an ActOnFriendDecl and call it for friend class decls. | Anders Carlsson |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |