| Commit message (Expand) | Author | Age | Files | Lines |
| * | Allow downcasts of pointers to Objective-C interfaces, with a | Douglas Gregor | 2008-12-19 | 1 | -1/+1 |
| * | Make the injected-class-name of a C++ class a separate RecordDecl from the cl... | Douglas Gregor | 2008-12-17 | 1 | -1/+3 |
| * | Move the other Sema::ActOnLinkageSpec to SemaDeclCXX. | Chris Lattner | 2008-12-17 | 1 | -0/+26 |
| * | Move Sema::ActOnLinkageSpec to SemaDeclCXX. | Chris Lattner | 2008-12-17 | 1 | -0/+19 |
| * | Delay parsing of default arguments of member functions until the class | Douglas Gregor | 2008-12-16 | 1 | -3/+106 |
| * | Place constructors and destructors into the DeclContext of the class, | Douglas Gregor | 2008-12-15 | 1 | -105/+47 |
| * | Don't double-destroy constructors defined out-of-line. This is a | Douglas Gregor | 2008-12-15 | 1 | -8/+12 |
| * | Some utilities for using the smart pointers in Actions, especially Sema. Conv... | Sebastian Redl | 2008-12-13 | 1 | -1/+1 |
| * | Enable out-of-line definitions of C++ constructors and destructors | Douglas Gregor | 2008-12-12 | 1 | -15/+24 |
| * | Address some comments on the name lookup/DeclContext patch from Chris | Douglas Gregor | 2008-12-11 | 1 | -2/+2 |
| * | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -35/+38 |
| * | Simplify some diagnostics. | Anders Carlsson | 2008-12-06 | 1 | -7/+7 |
| * | Change a whole lot of diagnostics to take QualType's directly | Chris Lattner | 2008-11-24 | 1 | -11/+9 |
| * | Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of | Chris Lattner | 2008-11-24 | 1 | -10/+9 |
| * | Make all the 'redefinition' diagnostics more consistent, and make the | Chris Lattner | 2008-11-23 | 1 | -8/+8 |
| * | Convert IdentifierInfo's to be printed the same as DeclarationNames | Chris Lattner | 2008-11-23 | 1 | -4/+4 |
| * | Implement a %plural modifier for complex plural forms in diagnostics. Use it ... | Sebastian Redl | 2008-11-22 | 1 | -7/+3 |
| * | merge 3 more diagnostics into 1. | Chris Lattner | 2008-11-21 | 1 | -5/+6 |
| * | Add the concept of "modifiers" to the clang diagnostic format | Chris Lattner | 2008-11-21 | 1 | -23/+9 |
| * | Don't print canonical types in overloading-related diagnostics | Douglas Gregor | 2008-11-21 | 1 | -2/+2 |
| * | remove the last old-fashioned Diag method. Transition complete! | Chris Lattner | 2008-11-20 | 1 | -11/+10 |
| * | remove another old Diag method. | Chris Lattner | 2008-11-20 | 1 | -10/+9 |
| * | remove another old-school Diag method. | Chris Lattner | 2008-11-20 | 1 | -12/+10 |
| * | stop calling II::getName() unnecesarily in sema | Chris Lattner | 2008-11-19 | 1 | -6/+6 |
| * | Allow sending IdentifierInfo*'s into Diagnostics without turning them into st... | Chris Lattner | 2008-11-19 | 1 | -1/+1 |
| * | convert some diags to use numbers instead of strings. | Chris Lattner | 2008-11-19 | 1 | -6/+1 |
| * | remove one more old-style Diag method. | Chris Lattner | 2008-11-19 | 1 | -2/+2 |
| * | Switch several more Sema Diag methods over. This simplifies the | Chris Lattner | 2008-11-19 | 1 | -118/+81 |
| * | start converting Sema over to using its canonical Diag method. | Chris Lattner | 2008-11-18 | 1 | -8/+8 |
| * | Implement effects of 'mutable', and a few comments from Chris on its parsing. | Sebastian Redl | 2008-11-17 | 1 | -0/+4 |
| * | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor | 2008-11-17 | 1 | -9/+9 |
| * | Some cleanups for C++ operator overloading | Douglas Gregor | 2008-11-17 | 1 | -57/+37 |
| * | Simplify error messages for two-parameter overloaded increment/decrement oper... | Douglas Gregor | 2008-11-17 | 1 | -11/+4 |
| * | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -6/+12 |
| * | Implement parsing and semantic checking of the 'mutable' keyword. | Sebastian Redl | 2008-11-14 | 1 | -2/+32 |
| * | Don't build identifiers for C++ constructors, destructors, or | Douglas Gregor | 2008-11-12 | 1 | -5/+3 |
| * | Implement support for operator overloading using candidate operator | Douglas Gregor | 2008-11-12 | 1 | -3/+3 |
| * | Basic support for taking the address of an overloaded function | Douglas Gregor | 2008-11-10 | 1 | -0/+16 |
| * | Allow user-defined conversions during reference binding | Douglas Gregor | 2008-11-10 | 1 | -2/+62 |
| * | Don't create a typedef for the injected-class-name | Douglas Gregor | 2008-11-10 | 1 | -14/+5 |
| * | Some cleanups to the declaration/checking of overloaded operators in C++. Tha... | Douglas Gregor | 2008-11-10 | 1 | -92/+40 |
| * | Implement Sema support for C++ nested-name-specifiers. | Argyrios Kyrtzidis | 2008-11-08 | 1 | -2/+9 |
| * | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis | 2008-11-08 | 1 | -2/+3 |
| * | Parsing, ASTs, and semantic analysis for the declaration of conversion | Douglas Gregor | 2008-11-07 | 1 | -0/+135 |
| * | Parsing, ASTs, and semantic analysis for the declaration of overloaded | Douglas Gregor | 2008-11-06 | 1 | -0/+239 |
| * | Sema-check virtual declarations. Complete dynamic_cast checking. | Sebastian Redl | 2008-11-06 | 1 | -2/+19 |
| * | Parsing, representation, and preliminary semantic analysis of destructors. | Douglas Gregor | 2008-11-05 | 1 | -2/+230 |
| * | Keep track of whether a C++ class is an aggregate. Don't allow initialization... | Douglas Gregor | 2008-11-05 | 1 | -0/+9 |
| * | Implement C++ copy-initialization for declarations. There is now some | Douglas Gregor | 2008-11-05 | 1 | -26/+46 |
| * | Initial implementation of parsing, semantic analysis, and AST-building | Douglas Gregor | 2008-11-05 | 1 | -0/+106 |