| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Implement template instantiation for the prefix unary operators. As | Douglas Gregor | 2009-03-13 | 1 | -1/+149 |
* | Refactor the way we handle operator overloading and template | Douglas Gregor | 2009-03-13 | 1 | -43/+206 |
* | Improve the representation of operator expressions like "x + y" within | Douglas Gregor | 2009-03-13 | 1 | -106/+38 |
* | Eliminate CXXRecordType | Douglas Gregor | 2009-02-28 | 1 | -36/+38 |
* | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor | 2009-02-26 | 1 | -17/+17 |
* | Drop uses of getAsPointerLikeType. | Daniel Dunbar | 2009-02-26 | 1 | -1/+3 |
* | Provide a proper source location when building an implicit dereference. Fixes... | Douglas Gregor | 2009-02-19 | 1 | -1/+1 |
* | Downgrade complaints about calling unavailable functions to a warning | Douglas Gregor | 2009-02-18 | 1 | -2/+51 |
* | remove "; candidates are/is:" from various ambiguity diagnostics. | Chris Lattner | 2009-02-17 | 1 | -9/+5 |
* | Several cleanups: | Steve Naroff | 2009-02-12 | 1 | -10/+10 |
* | Expand the definition of a complex promotion to include complex -> | Douglas Gregor | 2009-02-12 | 1 | -3/+7 |
* | Introduce _Complex conversions into the function overloading | Douglas Gregor | 2009-02-12 | 1 | -1/+54 |
* | Initial implementation of function overloading in C. | Douglas Gregor | 2009-02-11 | 1 | -21/+39 |
* | Add semantic checking for template arguments that correspond to | Douglas Gregor | 2009-02-11 | 1 | -0/+19 |
* | Add partial semantic checking of template arguments that are meant for | Douglas Gregor | 2009-02-11 | 1 | -1/+1 |
* | CallExpr now uses ASTContext's allocate to allocate/delete its array of subex... | Ted Kremenek | 2009-02-09 | 1 | -4/+9 |
* | Overhaul of Stmt allocation: | Ted Kremenek | 2009-02-07 | 1 | -17/+19 |
* | Remove some non-ASCII in comment. | Sebastian Redl | 2009-02-05 | 1 | -2/+2 |
* | Implement taking address of member functions, including overloaded ones. | Sebastian Redl | 2009-02-04 | 1 | -6/+28 |
* | Bring operator name lookup (as required for C++ operator overloading) | Douglas Gregor | 2009-02-04 | 1 | -51/+22 |
* | Fix our semantic analysis of | Douglas Gregor | 2009-02-04 | 1 | -9/+45 |
* | Initial implementation of argument dependent lookup (a.k.a. ADL, | Douglas Gregor | 2009-02-04 | 1 | -9/+96 |
* | Steve set me straight on this one. GCC was right, EDG was wrong: the | Douglas Gregor | 2009-02-02 | 1 | -3/+5 |
* | Improve our handling of the second step in a user-defined conversion | Douglas Gregor | 2009-01-30 | 1 | -14/+34 |
* | Eliminated LookupCriteria, whose creation was causing a bottleneck for | Douglas Gregor | 2009-01-30 | 1 | -3/+2 |
* | Implement pointer to member handling in static_cast. | Sebastian Redl | 2009-01-28 | 1 | -43/+42 |
* | Implement implicit conversions for pointers-to-member. | Sebastian Redl | 2009-01-25 | 1 | -6/+101 |
* | 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 |