| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -8/+5 | 
| *  | Convert more expression actions to smart pointers. | Sebastian Redl | 2009-01-19 | 1 | -6/+8 | 
| *  | Use a single function for doing vararg argument promotion. Also, make sure to... | Anders Carlsson | 2009-01-16 | 1 | -7/+1 | 
| *  | Introduce support for C++0x explicit conversion operators (N2437) | Douglas Gregor | 2009-01-14 | 1 | -23/+71 | 
| *  | Warn when someone tries to pass a variable with a non-POD type to a varargs f... | Anders Carlsson | 2009-01-13 | 1 | -0/+7 | 
| *  | Fix argument-passing bugs in a call to object | Douglas Gregor | 2009-01-13 | 1 | -10/+16 | 
| *  | Add the proper restrictions on the left-hand argument of a built-in | Douglas Gregor | 2009-01-13 | 1 | -9/+31 | 
| *  | Make sure we don't name a constructor or destructor with a qualified | Douglas Gregor | 2009-01-13 | 1 | -1/+1 | 
| *  | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -4/+4 | 
| *  | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor | 2009-01-07 | 1 | -1/+1 | 
| *  | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor | 2008-12-23 | 1 | -17/+15 | 
| *  | Add some block-pointer conversions in C++ | Douglas Gregor | 2008-12-23 | 1 | -11/+20 | 
| *  | Don't explicitly represent OverloadedFunctionDecls within | Douglas Gregor | 2008-12-23 | 1 | -64/+22 | 
| *  | Support conversion from a null pointer constant o any Objective-C object poin... | Douglas Gregor | 2008-12-22 | 1 | -0/+7 | 
| *  | Add support for calls to overloaded member functions. Things to note: | Douglas Gregor | 2008-12-22 | 1 | -12/+136 | 
| *  | Add support for member references (E1.E2, E1->E2) with C++ semantics, | Douglas Gregor | 2008-12-20 | 1 | -19/+20 | 
| *  | Support more implicit conversions for Objective-C types. Addresses <rdar://pr... | Douglas Gregor | 2008-12-19 | 1 | -9/+110 | 
| *  | Allow downcasts of pointers to Objective-C interfaces, with a | Douglas Gregor | 2008-12-19 | 1 | -4/+25 | 
| *  | Add some more implicit conversions for Objective-C++ | Douglas Gregor | 2008-12-18 | 1 | -0/+20 | 
| *  | Place constructors and destructors into the DeclContext of the class, | Douglas Gregor | 2008-12-15 | 1 | -5/+19 | 
| *  | In C++, set the type of each of the enumerators in an enumeration to | Douglas Gregor | 2008-12-12 | 1 | -3/+5 | 
| *  | Address some comments on the name lookup/DeclContext patch from Chris | Douglas Gregor | 2008-12-11 | 1 | -3/+3 | 
| *  | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -13/+10 | 
| *  | Add support for calls to dependent names within templates, e.g., | Douglas Gregor | 2008-12-06 | 1 | -2/+3 | 
| *  | Add implicit conversions for Objective-C qualified ids, e.g., | Douglas Gregor | 2008-11-27 | 1 | -2/+18 | 
| *  | Cleanup formatting | Douglas Gregor | 2008-11-27 | 1 | -4/+8 | 
| *  | Support block pointer conversions in C++. I'm storing the test case locally u... | Douglas Gregor | 2008-11-27 | 1 | -0/+15 | 
| *  | Implement implicit conversions for Objective-C specific types, e.g.,  | Douglas Gregor | 2008-11-26 | 1 | -46/+103 | 
| *  | Tweak the new ResolveOverloadedCallFn to just return a FunctionDecl. It makes... | Douglas Gregor | 2008-11-26 | 1 | -13/+9 | 
| *  | Move the overloading logic of Sema::ActOnCallExpr to a separate function | Douglas Gregor | 2008-11-26 | 1 | -0/+46 | 
| *  | Change a whole lot of diagnostics to take QualType's directly  | Chris Lattner | 2008-11-24 | 1 | -10/+7 | 
| *  | Rename NamedDecl::getName() to getNameAsString().  Replace a bunch of  | Chris Lattner | 2008-11-24 | 1 | -11/+11 | 
| *  | Implement a %plural modifier for complex plural forms in diagnostics. Use it ... | Sebastian Redl | 2008-11-22 | 1 | -11/+7 | 
| *  | Fix overloading of non-static member functions that differ in their cv-qualif... | Douglas Gregor | 2008-11-21 | 1 | -1/+1 | 
| *  | Cleanup memory management in overloading of operator->, slightly | Douglas Gregor | 2008-11-21 | 1 | -8/+9 | 
| *  | Don't print canonical types in overloading-related diagnostics | Douglas Gregor | 2008-11-21 | 1 | -5/+25 | 
| *  | Add support for overloaded operator-> when used in a member access | Douglas Gregor | 2008-11-20 | 1 | -0/+80 | 
| *  | Fix strange quote characters | Douglas Gregor | 2008-11-20 | 1 | -4/+4 | 
| *  | Implement the rest of C++ [over.call.object], which permits the object | Douglas Gregor | 2008-11-19 | 1 | -8/+153 | 
| *  | Support for calling overloaded function call operators (operator()) | Douglas Gregor | 2008-11-19 | 1 | -0/+150 | 
| *  | Added operator overloading for unary operators, post-increment, and | Douglas Gregor | 2008-11-19 | 1 | -33/+209 | 
| *  | Switch several more Sema Diag methods over.  This simplifies the | Chris Lattner | 2008-11-19 | 1 | -5/+5 | 
| *  | Built-in equality and relational operators have return type "bool" in C++, | Douglas Gregor | 2008-11-19 | 1 | -12/+50 | 
| *  | Partial expansion of C++ operator overloading (for binary operators) | Douglas Gregor | 2008-11-18 | 1 | -13/+272 | 
| *  | start converting Sema over to using its canonical Diag method. | Chris Lattner | 2008-11-18 | 1 | -4/+3 | 
| *  | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -1/+1 | 
| *  | Some cleanup for the implementation of built-in operator | Douglas Gregor | 2008-11-13 | 1 | -7/+45 | 
| *  | Implement support for operator overloading using candidate operator | Douglas Gregor | 2008-11-12 | 1 | -4/+581 | 
| *  | Basic support for taking the address of an overloaded function | Douglas Gregor | 2008-11-10 | 1 | -3/+112 | 
| *  | Remove an out-of-date FIXME | Douglas Gregor | 2008-11-10 | 1 | -1/+0 |