| Commit message (Expand) | Author | Age | Files | Lines |
| * | Retain source information for the "type-name ::" in a | Douglas Gregor | 2010-02-24 | 1 | -3/+6 |
| * | ActOnPseudoDestructorExpr now performs all semantic analysis for | Douglas Gregor | 2010-02-24 | 1 | -38/+211 |
| * | Rework parsing of pseudo-destructor expressions and explicit | Douglas Gregor | 2010-02-24 | 1 | -2/+149 |
| * | Implement crazy destructor name lookup semantics differently in | Douglas Gregor | 2010-02-23 | 1 | -14/+56 |
| * | Eliminate the default arguments to ASTContext::getFunctionType(), | Douglas Gregor | 2010-02-21 | 1 | -1/+1 |
| * | Implement support for parsing pseudo-destructor expression with a nested-name... | Douglas Gregor | 2010-02-21 | 1 | -2/+3 |
| * | Commiting a revert from dgregor of a bit of destructor logic until we can | Chandler Carruth | 2010-02-21 | 1 | -17/+11 |
| * | Fixed a crash specific to blocks in c++ uncovered by an internal | Fariborz Jahanian | 2010-02-18 | 1 | -1/+3 |
| * | Improve parsing and instantiation of destructor names, so that we can | Douglas Gregor | 2010-02-16 | 1 | -0/+226 |
| * | Fix leak in CXXNewExpr where the SubExprs array would get allocated directly ... | Ted Kremenek | 2010-02-11 | 1 | -4/+7 |
| * | Eliminate a bunch of unnecessary ASTContexts from members functions of | Douglas Gregor | 2010-02-11 | 1 | -1/+1 |
| * | Thread a source location into the template-argument deduction routines. There | John McCall | 2010-02-08 | 1 | -2/+2 |
| * | When we're parsing an expression that may have looked like a | Douglas Gregor | 2010-02-05 | 1 | -1/+3 |
| * | Extract a common structure for holding information about the definition | John McCall | 2010-02-04 | 1 | -11/+15 |
| * | Teach the allocation function overload handling to deal with templates, and | Chandler Carruth | 2010-02-03 | 1 | -12/+21 |
| * | Implement the lvalue-to-rvalue conversion where needed. The | Douglas Gregor | 2010-02-03 | 1 | -4/+4 |
| * | Switch expressions like T() and T(1,2) over to new-style initialization. I'm | Eli Friedman | 2010-01-31 | 1 | -23/+12 |
| * | Fix a major oversight in the comparison of standard conversion | Douglas Gregor | 2010-01-27 | 1 | -2/+2 |
| * | Pass access specifiers around in overload resolution. | John McCall | 2010-01-26 | 1 | -1/+1 |
| * | Give UnresolvedSet the ability to store access specifiers for each declaration. | John McCall | 2010-01-20 | 1 | -2/+2 |
| * | Make the AST explicitly represent the cast of the first operand of a | Eli Friedman | 2010-01-16 | 1 | -3/+5 |
| * | Preserve type source information in explicit cast expressions. | John McCall | 2010-01-15 | 1 | -3/+5 |
| * | Record some basic information about bad conversion sequences. Use that | John McCall | 2010-01-13 | 1 | -1/+2 |
| * | So I was sitting around, trying vainly to think of something to commit, and then | John McCall | 2010-01-12 | 1 | -3/+3 |
| * | Introduce a specific representation for the ambiguous implicit conversion | John McCall | 2010-01-12 | 1 | -36/+33 |
| * | Change the printing of OR_Deleted overload results to print all the candidates, | John McCall | 2010-01-08 | 1 | -3/+3 |
| * | Add an "implicit" bit to CXXThisExpr, so that we can track | Douglas Gregor | 2010-01-07 | 1 | -1/+2 |
| * | Improve the diagnostics used to report implicitly-generated class members | John McCall | 2010-01-06 | 1 | -1/+1 |
| * | Get rid of more unnecessary code. | Eli Friedman | 2010-01-02 | 1 | -77/+6 |
| * | Get rid of some unnecessary code. | Eli Friedman | 2010-01-02 | 1 | -115/+0 |
| * | When transforming CXXExprWithTemporaries and CXXBindTemporaryExpr | Douglas Gregor | 2009-12-24 | 1 | -0/+2 |
| * | There is no such thing as typeinfo for a cv-qualified type. Assert | Douglas Gregor | 2009-12-23 | 1 | -2/+9 |
| * | Diagnose the use of incomplete types in C++ typeid expressions | Douglas Gregor | 2009-12-23 | 1 | -2/+18 |
| * | Remove cv-qualifiers from the argument to typeid | Douglas Gregor | 2009-12-23 | 1 | -11/+30 |
| * | Allow the first parameter of operator new to be a cv-qualified | Douglas Gregor | 2009-12-22 | 1 | -1/+2 |
| * | Switch Sema::AddCXXDirectInitializerToDecl over to InitializationSequence | Douglas Gregor | 2009-12-22 | 1 | -0/+8 |
| * | Switch InitializedEntity from TypeLoc down to just QualTypes, since we don't ... | Douglas Gregor | 2009-12-22 | 1 | -10/+1 |
| * | Switch the initialization required by return statements over to the | Douglas Gregor | 2009-12-18 | 1 | -1/+1 |
| * | implement PR5654: add -fassume-sane-operator-new, which is enabled by default... | Nuno Lopes | 2009-12-16 | 1 | -3/+9 |
| * | Fix semantic diagnostics that embed English works, from Nicola Gigante! | Douglas Gregor | 2009-12-16 | 1 | -26/+24 |
| * | Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Ac... | Anders Carlsson | 2009-12-16 | 1 | -0/+16 |
| * | Switch the C++ new expression over to InitializationSequence, rather | Douglas Gregor | 2009-12-16 | 1 | -58/+54 |
| * | ShouldDestroyTemporaries? I don't think so. | Anders Carlsson | 2009-12-15 | 1 | -7/+3 |
| * | Add support for finding composite type of twp objective-c pointers | Fariborz Jahanian | 2009-12-10 | 1 | -0/+5 |
| * | Reimplement reference initialization (C++ [dcl.init.ref]) using the | Douglas Gregor | 2009-12-09 | 1 | -6/+14 |
| * | Look through using declarations when searching for allocation overloads. | Anders Carlsson | 2009-12-09 | 1 | -1/+2 |
| * | Fix for PR5730: make sure to consistently call | Eli Friedman | 2009-12-09 | 1 | -11/+5 |
| * | Implemented an implicit conversion from "noreturn" function types (and | Douglas Gregor | 2009-12-09 | 1 | -0/+10 |
| * | Patch to allow matching 0 with an objective-c pointer type | Fariborz Jahanian | 2009-12-08 | 1 | -2/+2 |
| * | DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia... | John McCall | 2009-12-07 | 1 | -5/+5 |