| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary ... | Douglas Gregor | 2008-11-04 | 1 | -13/+9 |
| * | Now that we have copy initialization support, use it for checking the default... | Douglas Gregor | 2008-11-04 | 1 | -11/+3 |
| * | Diagnose use of 'this' in a C++ default argument. Thanks to Eli for correctin... | Douglas Gregor | 2008-11-04 | 1 | -7/+14 |
| * | Check that this cannot be used in a default argument. Happily, it was already... | Douglas Gregor | 2008-11-03 | 1 | -2/+7 |
| * | Implicit support for direct initialization of objects of class type, e.g., | Douglas Gregor | 2008-11-03 | 1 | -6/+78 |
| * | Standard conversion sequences now have a CopyConstructor field, to | Douglas Gregor | 2008-11-03 | 1 | -2/+6 |
| * | Add implicitly-declared default and copy constructors to C++ classes, | Douglas Gregor | 2008-11-03 | 1 | -0/+106 |
| * | Semantic checking of constructor declarations and classification of default/c... | Douglas Gregor | 2008-10-31 | 1 | -11/+42 |
| * | Implement basic support for converting constructors in user-defined | Douglas Gregor | 2008-10-31 | 1 | -0/+18 |
| * | Made the mechanism of defining preprocessor defs for maxint, ptrdiff_t, wchar | Sanjiv Gupta | 2008-10-31 | 1 | -1/+1 |
| * | Add support for parsing and representing C++ constructor declarations. | Douglas Gregor | 2008-10-31 | 1 | -2/+41 |
| * | Improve documentation for Sema::CheckReferenceInit | Douglas Gregor | 2008-10-29 | 1 | -7/+7 |
| * | Implement overloading rules for reference binding | Douglas Gregor | 2008-10-29 | 1 | -4/+4 |
| * | Tweak Sema::CheckReferenceInit so that it (optionally) computes an | Douglas Gregor | 2008-10-29 | 1 | -30/+87 |
| * | Implement initialization of a reference (C++ [dcl.init.ref]) as part | Douglas Gregor | 2008-10-29 | 1 | -0/+190 |
| * | Clean up and document the representation of C++ base classes | Douglas Gregor | 2008-10-23 | 1 | -16/+24 |
| * | Added GraphViz visualization of C++ inheritance hierarchies. | Douglas Gregor | 2008-10-22 | 1 | -9/+1 |
| * | Add representation of base classes in the AST, and verify that we | Douglas Gregor | 2008-10-22 | 1 | -12/+63 |
| * | Preliminary support for function overloading | Douglas Gregor | 2008-10-21 | 1 | -1/+2 |
| * | Fix this bug: | Argyrios Kyrtzidis | 2008-10-15 | 1 | -1/+3 |
| * | Revert my previous change, got stupidly confused with my local changes. | Argyrios Kyrtzidis | 2008-10-14 | 1 | -1/+1 |
| * | Fix a call to Sema::LookupDecl that had incorrect parameters. | Argyrios Kyrtzidis | 2008-10-14 | 1 | -1/+1 |
| * | Fix a bug that crashed clang when parsing this: | Argyrios Kyrtzidis | 2008-10-08 | 1 | -10/+20 |
| * | Simplify handling of direct initializers by letting Sema::AddInitializerToDec... | Argyrios Kyrtzidis | 2008-10-06 | 1 | -17/+12 |
| * | Use "unsigned" instead of "int" for i to remove a "comparison between unsigne... | Ted Kremenek | 2008-10-06 | 1 | -1/+1 |
| * | The current semantic process for direct initializers won't work properly for ... | Argyrios Kyrtzidis | 2008-10-06 | 1 | -21/+13 |
| * | Implement support for C++ direct initializers in declarations, e.g. "int x(1);". | Argyrios Kyrtzidis | 2008-10-06 | 1 | -0/+80 |
| * | Pass postfix attributes to ActOnFields. | Daniel Dunbar | 2008-10-03 | 1 | -1/+1 |
| * | Use Sema::isDeclInScope instead of IdentifierResolver::isDeclInScope. | Argyrios Kyrtzidis | 2008-09-10 | 1 | -2/+1 |
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -7/+0 |
| * | Minor #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -1/+3 |
| * | When in C++, invoke ASTConsumer::HandleTagDeclDefinition in Sema::ActOnFinish... | Argyrios Kyrtzidis | 2008-08-09 | 1 | -3/+6 |
| * | Passing right brace location to ActOnFinishCXXClassDef is redundant, since it... | Argyrios Kyrtzidis | 2008-08-09 | 1 | -1/+1 |
| * | Move AsmLabel into Declarator instead of just a parameter to | Daniel Dunbar | 2008-08-05 | 1 | -1/+1 |
| * | Add more Parser/Sema support for GCC asm-label extension. | Daniel Dunbar | 2008-08-05 | 1 | -1/+1 |
| * | Wherever a type is used/returned from the Action module, use TypeTy instead o... | Argyrios Kyrtzidis | 2008-08-01 | 1 | -1/+1 |