| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Refactor name lookup. | Douglas Gregor | 2009-01-14 | 1 | -2/+1 |
| * | Introduce support for C++0x explicit conversion operators (N2437) | Douglas Gregor | 2009-01-14 | 1 | -14/+24 |
| * | FunctionDecl::setParams() now uses the allocator associated with ASTContext t... | Ted Kremenek | 2009-01-14 | 1 | -1/+1 |
| * | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor | 2009-01-12 | 1 | -1/+1 |
| * | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -2/+2 |
| * | PODness and Type Traits | Sebastian Redl | 2009-01-05 | 1 | -0/+17 |
| * | Fix misguided type selection | Douglas Gregor | 2008-12-23 | 1 | -1/+1 |
| * | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor | 2008-12-23 | 1 | -19/+11 |
| * | Don't explicitly represent OverloadedFunctionDecls within | Douglas Gregor | 2008-12-23 | 1 | -18/+11 |
| * | Allow downcasts of pointers to Objective-C interfaces, with a | Douglas Gregor | 2008-12-19 | 1 | -5/+17 |
| * | Some utilities for using the smart pointers in Actions, especially Sema. Conv... | Sebastian Redl | 2008-12-13 | 1 | -1/+1 |
| * | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -4/+3 |
| * | Added a warning when referencing an if's condition variable in the | Douglas Gregor | 2008-12-10 | 1 | -0/+4 |
| * | Introduce basic support for dependent types, type-dependent | Douglas Gregor | 2008-12-05 | 1 | -2/+2 |
| * | Code cleanup in new handling. | Sebastian Redl | 2008-12-04 | 1 | -109/+87 |
| * | Fix some diagnostics and enhance test cases. Now tests member new and ambiguo... | Sebastian Redl | 2008-12-04 | 1 | -2/+4 |
| * | Overload resolution for the operator new function. Member version is still un... | Sebastian Redl | 2008-12-03 | 1 | -10/+234 |
| * | Handle new by passing the Declaration to the Action, not a processed type. | Sebastian Redl | 2008-12-02 | 1 | -36/+72 |
| * | Change a whole lot of diagnostics to take QualType's directly | Chris Lattner | 2008-11-24 | 1 | -8/+7 |
| * | Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of | Chris Lattner | 2008-11-24 | 1 | -5/+5 |
| * | Implementation of new and delete parsing and sema. | Sebastian Redl | 2008-11-21 | 1 | -0/+194 |
| * | remove another old-school Diag method. | Chris Lattner | 2008-11-20 | 1 | -4/+4 |
| * | remove the type_info identifier cache. Compared to the cost | Chris Lattner | 2008-11-20 | 1 | -12/+7 |
| * | Some tweaks suggested by Argiris | Douglas Gregor | 2008-11-19 | 1 | -14/+13 |
| * | remove one more old-style Diag method. | Chris Lattner | 2008-11-19 | 1 | -9/+9 |
| * | As threatened previously: consolidate name lookup and the creation of | Douglas Gregor | 2008-11-18 | 1 | -68/+3 |
| * | Extend DeclarationName to support C++ overloaded operators, e.g., | Douglas Gregor | 2008-11-18 | 1 | -0/+46 |
| * | Updated IdentifierResolver to deal with DeclarationNames. The names of | Douglas Gregor | 2008-11-17 | 1 | -0/+50 |
| * | Implement C++ 'typeid' parsing and sema. | Sebastian Redl | 2008-11-11 | 1 | -0/+28 |
| * | Basic support for taking the address of an overloaded function | Douglas Gregor | 2008-11-10 | 1 | -1/+10 |
| * | Move named cast sema functions to their own file. | Sebastian Redl | 2008-11-05 | 1 | -660/+0 |
| * | A small error message improvement and some comment cleanup for static_cast. | Sebastian Redl | 2008-11-05 | 1 | -13/+27 |
| * | Initial implementation of parsing, semantic analysis, and AST-building | Douglas Gregor | 2008-11-05 | 1 | -1/+1 |
| * | Some cleanup of the cast checkers. Don't canonicalize types when not needed. ... | Sebastian Redl | 2008-11-04 | 1 | -45/+28 |
| * | Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary ... | Douglas Gregor | 2008-11-04 | 1 | -2/+1 |
| * | Standard conversion sequences now have a CopyConstructor field, to | Douglas Gregor | 2008-11-03 | 1 | -7/+7 |
| * | Add implicitly-declared default and copy constructors to C++ classes, | Douglas Gregor | 2008-11-03 | 1 | -0/+7 |
| * | Source ranges for named cast diagnostics. | Sebastian Redl | 2008-11-02 | 1 | -43/+53 |
| * | Implement basic support for converting constructors in user-defined | Douglas Gregor | 2008-10-31 | 1 | -2/+2 |
| * | Implement semantic checking of static_cast and dynamic_cast. | Sebastian Redl | 2008-10-31 | 1 | -25/+335 |
| * | Implement initialization of a reference (C++ [dcl.init.ref]) as part | Douglas Gregor | 2008-10-29 | 1 | -1/+1 |
| * | Improve our handling of (C++) references within Clang. Specifically: | Douglas Gregor | 2008-10-28 | 1 | -8/+0 |
| * | Refactor the expression class hierarchy for casts. Most importantly: | Douglas Gregor | 2008-10-27 | 1 | -17/+21 |
| * | Some cleanups for the ambiguous derived-to-base conversion checks | Douglas Gregor | 2008-10-24 | 1 | -3/+4 |
| * | Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian... | Douglas Gregor | 2008-10-24 | 1 | -6/+333 |
| * | First non-embarrassing cut at checking for ambiguous derived-to-base | Douglas Gregor | 2008-10-24 | 1 | -0/+125 |
| * | Use getCustomDiagID() instead of specifying the diagnostic in the 'Diagnostic... | Argyrios Kyrtzidis | 2008-10-06 | 1 | -2/+4 |
| * | Give string literals const element typesin C++, and cope with the deprecated ... | Douglas Gregor | 2008-09-12 | 1 | -0/+31 |
| * | Implement Sema support for the 'condition' part of C++ selection-statements a... | Argyrios Kyrtzidis | 2008-09-10 | 1 | -0/+70 |
| * | Add support for C++'s "type-specifier ( expression-list )" expression: | Argyrios Kyrtzidis | 2008-08-22 | 1 | -0/+64 |