| Commit message (Expand) | Author | Age | Files | Lines |
| * | Improved semantic analysis and AST respresentation for function | Douglas Gregor | 2009-06-25 | 1 | -0/+9 |
| * | patch to mark use of implicit copy constructors. | Fariborz Jahanian | 2009-06-22 | 1 | -7/+15 |
| * | Parsing and AST support for using declarations, from John Thompson! | Douglas Gregor | 2009-06-20 | 1 | -0/+8 |
| * | Patch for implementation of C++'s object model. This is | Fariborz Jahanian | 2009-06-19 | 1 | -1/+19 |
| * | Removed deadcode related to addition of constructor | Fariborz Jahanian | 2009-06-17 | 1 | -24/+21 |
| * | If a CXXRecordDecl is a class template, the 'this' type should be the injecte... | Anders Carlsson | 2009-06-13 | 1 | -1/+6 |
| * | Make ParmVarDecl::getDefaultArg() more robust, it now asserts that the argume... | Anders Carlsson | 2009-06-06 | 1 | -2/+2 |
| * | Get rid of CXXTempVarDecl. | Anders Carlsson | 2009-05-30 | 1 | -9/+0 |
| * | Pretty printing and improved representation for namespace alias declarations | Douglas Gregor | 2009-05-30 | 1 | -2/+4 |
| * | Printing for using directives, e.g., | Douglas Gregor | 2009-05-30 | 1 | -2/+4 |
| * | Add code for emitting C++ destructors. Not used yet. | Anders Carlsson | 2009-05-29 | 1 | -0/+17 |
| * | Add setters/getters to CXXMethodDecl so it can keep track of which virtual me... | Anders Carlsson | 2009-05-16 | 1 | -0/+41 |
| * | Make sure that the type associated with a class template is dependent. | Douglas Gregor | 2009-05-15 | 1 | -2/+4 |
| * | Silence gcc warnings. | Eli Friedman | 2009-04-25 | 1 | -2/+2 |
| * | Fix assert. | Anders Carlsson | 2009-04-24 | 1 | -2/+4 |
| * | Add the beginnings of a CXXTempVarDecl class. | Anders Carlsson | 2009-04-21 | 1 | -0/+7 |
| * | Add support for the __has_trivial_destructor type trait. | Anders Carlsson | 2009-04-17 | 1 | -1/+1 |
| * | Add support for the __has_trivial_constructor type trait. | Anders Carlsson | 2009-04-16 | 1 | -0/+6 |
| * | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor | 2009-04-09 | 1 | -2/+2 |
| * | switch TemplateOrInstantiation to be a PointerUnion, which | Chris Lattner | 2009-03-29 | 1 | -18/+0 |
| * | Create AST nodes for namespace aliases. | Anders Carlsson | 2009-03-28 | 1 | -0/+10 |
| * | Add | Anders Carlsson | 2009-03-26 | 1 | -0/+21 |
| * | Instantiation for member classes of class templates. Note that only | Douglas Gregor | 2009-03-25 | 1 | -1/+21 |
| * | Keep track of whether a class is abstract or not. This is currently only used... | Anders Carlsson | 2009-03-22 | 1 | -2/+2 |
| * | Some minor tweaks and additional tests for rvalue references | Douglas Gregor | 2009-03-20 | 1 | -1/+1 |
| * | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl | 2009-03-16 | 1 | -4/+5 |
| * | More static_assert work. Check that the assert expr is valid and show an erro... | Anders Carlsson | 2009-03-14 | 1 | -0/+17 |
| * | Eliminate CXXClassVarDecl. It doesn't add anything | Douglas Gregor | 2009-03-11 | 1 | -6/+0 |
| * | Implement the basics of implicit instantiation of class templates, in | Douglas Gregor | 2009-03-03 | 1 | -0/+1 |
| * | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor | 2009-02-26 | 1 | -4/+4 |
| * | Added ClassTemplateSpecializationDecl, which is a subclass of | Douglas Gregor | 2009-02-17 | 1 | -3/+3 |
| * | Basic representation of C++ class templates, from Andrew Sutton. | Douglas Gregor | 2009-02-04 | 1 | -30/+0 |
| * | Semantic analysis, ASTs, and unqualified name lookup support for C++ | Douglas Gregor | 2009-02-03 | 1 | -0/+11 |
| * | Finish making AST BumpPtrAllocation runtime configurable (based on -disable-f... | Steve Naroff | 2009-01-27 | 1 | -1/+1 |
| * | Remove many references to ASTContext::getAllocator(), replacing them with cal... | Steve Naroff | 2009-01-27 | 1 | -21/+12 |
| * | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -6/+4 |
| * | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -2/+2 |
| * | Finished semantic analysis of anonymous unions in C++. | Douglas Gregor | 2009-01-07 | 1 | -1/+1 |
| * | PODness and Type Traits | Sebastian Redl | 2009-01-05 | 1 | -5/+81 |
| * | Introduce support for "transparent" DeclContexts, which are | Douglas Gregor | 2009-01-05 | 1 | -35/+3 |
| * | Keep track of template arguments when we parse them. Right now, we don't actu... | Douglas Gregor | 2008-12-24 | 1 | -0/+15 |
| * | When determining whether a class type has a const copy constructor, be | Douglas Gregor | 2008-12-23 | 1 | -14/+5 |
| * | Make linkage-specifications hold on to all of their declarations | Douglas Gregor | 2008-12-16 | 1 | -0/+32 |
| * | Warning fixes to operator precedence warnings. | Eli Friedman | 2008-12-16 | 1 | -2/+2 |
| * | Remove tabs. | Nate Begeman | 2008-12-16 | 1 | -4/+4 |
| * | Place constructors and destructors into the DeclContext of the class, | Douglas Gregor | 2008-12-15 | 1 | -23/+23 |
| * | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -14/+2 |
| * | Representation of template type parameters and non-type template | Douglas Gregor | 2008-12-05 | 1 | -1/+17 |
| * | Implement effects of 'mutable', and a few comments from Chris on its parsing. | Sebastian Redl | 2008-11-17 | 1 | -2/+2 |
| * | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor | 2008-11-17 | 1 | -2/+3 |