| Commit message (Expand) | Author | Age | Files | Lines |
| * | PR7800: both virtual and non-virtual bases must be marked as used for VTTs. | Eli Friedman | 2010-08-07 | 1 | -2/+0 |
| * | Store inheritance paths after CastExprs instead of inside them. | John McCall | 2010-08-07 | 1 | -11/+16 |
| * | Remove the DeclaredInCondition bit now that it's no longer used. | Nick Lewycky | 2010-08-06 | 1 | -2/+0 |
| * | Implement #pragma GCC visibility. | Eli Friedman | 2010-08-05 | 1 | -0/+5 |
| * | Remove a redundant and broken check. Fixes PR7810. | Sebastian Redl | 2010-08-05 | 1 | -12/+0 |
| * | Only look up an 'operator delete' on the definition of a destructor, not on | John McCall | 2010-08-04 | 1 | -2/+3 |
| * | Further adjustments to -Wglobal-constructors; works for references and direct | John McCall | 2010-08-02 | 1 | -0/+8 |
| * | Read/write in PCH Sema's StdNamespace and StdBadAlloc and use a LazyDeclPtr f... | Argyrios Kyrtzidis | 2010-08-02 | 1 | -6/+6 |
| * | Rename getStdNamespace -> getOrCreateStdNamespace, to better reflect its func... | Argyrios Kyrtzidis | 2010-08-02 | 1 | -2/+2 |
| * | Make a first pass at implementing -Wglobal-constructors. I'm worried that this | John McCall | 2010-08-01 | 1 | -0/+3 |
| * | Fixed typedef inside extern "C". | Abramo Bagnara | 2010-07-30 | 1 | -1/+1 |
| * | Add source location information to C++ base specifiers. | Nick Lewycky | 2010-07-26 | 1 | -9/+12 |
| * | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -5/+1 |
| * | Remove dead code. | Eli Friedman | 2010-07-24 | 1 | -3/+0 |
| * | PR7698: Make sure we correctly handle the initialization of an array with | Eli Friedman | 2010-07-24 | 1 | -4/+1 |
| * | Support catching Objective C pointers in C++ under the non-fragile NeXT runtime. | John McCall | 2010-07-24 | 1 | -0/+21 |
| * | Update ImplicitCastExpr to be able to represent an XValue. | Sebastian Redl | 2010-07-20 | 1 | -5/+5 |
| * | A using declaration can redeclare a typedef to the same type. These | Douglas Gregor | 2010-07-07 | 1 | -2/+25 |
| * | Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of... | Argyrios Kyrtzidis | 2010-07-07 | 1 | -3/+3 |
| * | Remove my egregious hack that forced deserialization of visible | Douglas Gregor | 2010-07-06 | 1 | -31/+0 |
| * | Mark the operator delete associated with a virtual destructor as referenced. | John McCall | 2010-07-03 | 1 | -0/+2 |
| * | Lazily declare default constructors. We now delay the construction of | Douglas Gregor | 2010-07-03 | 1 | -14/+66 |
| * | Lazily declare implicit copy constructors. | Douglas Gregor | 2010-07-02 | 1 | -10/+31 |
| * | Lazily declare copy-assignment operators. | Douglas Gregor | 2010-07-02 | 1 | -15/+80 |
| * | Lazily declare the implicitly-declared destructor in a C++ class. | Douglas Gregor | 2010-07-02 | 1 | -5/+20 |
| * | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -24/+19 |
| * | Add a new routine Sema::LookupDestructor and make all destructor-lookup calls... | Douglas Gregor | 2010-07-01 | 1 | -9/+8 |
| * | Provide exception specifications for implicitly-declared default constructors. | Douglas Gregor | 2010-07-01 | 1 | -5/+46 |
| * | Move the implicit declaration of a default constructor into a separate | Douglas Gregor | 2010-07-01 | 1 | -32/+36 |
| * | Provide exception specifications for implicitly-declared copy constructors. | Douglas Gregor | 2010-07-01 | 1 | -2/+47 |
| * | Move the implicit declaration of a constructor out to a separate | Douglas Gregor | 2010-07-01 | 1 | -67/+77 |
| * | Teach DeclareImplicitCopyConstructor how to cope with virtual bases | Douglas Gregor | 2010-07-01 | 1 | -7/+17 |
| * | Move declaration of a class's implicit copy constructor into a | Douglas Gregor | 2010-07-01 | 1 | -86/+99 |
| * | Provide an exception-specification for an implicitly-declared | Douglas Gregor | 2010-07-01 | 1 | -2/+31 |
| * | Move the implicit declaration of a class's copy-assignment operator | Douglas Gregor | 2010-07-01 | 1 | -98/+101 |
| * | Make loops infinitely faster. No functionality change. | Douglas Gregor | 2010-07-01 | 1 | -5/+7 |
| * | Remove unnecessary ASTContext parameter from | Douglas Gregor | 2010-07-01 | 1 | -8/+8 |
| * | Reinstate fix for PR7526, which was failing because, now that we | Douglas Gregor | 2010-07-01 | 1 | -15/+114 |
| * | Revert r107374, which broke bootstrap. | Douglas Gregor | 2010-07-01 | 1 | -16/+13 |
| * | When building the type of a destructor, make sure to keep the | Douglas Gregor | 2010-07-01 | 1 | -13/+16 |
| * | Reapply r107235, this time with both my typo fixed, and a logical bug fixed. | Chandler Carruth | 2010-06-30 | 1 | -28/+50 |
| * | Revert r107235, it had a silly typo in it, and fixing the typo breaks something | Chandler Carruth | 2010-06-30 | 1 | -47/+28 |
| * | Fix PR7402: We were creating implicit member initializers for every field in an | Chandler Carruth | 2010-06-30 | 1 | -28/+47 |
| * | Retain the source location of the constructor when building an implicit member | Chandler Carruth | 2010-06-29 | 1 | -5/+5 |
| * | When typo correction produces a result that is not of the kind we're | Douglas Gregor | 2010-06-29 | 1 | -0/+7 |
| * | Typo correction for namespace alias definitions | Douglas Gregor | 2010-06-29 | 1 | -2/+24 |
| * | Allow a using directive to refer to the implicitly-defined namespace | Douglas Gregor | 2010-06-29 | 1 | -1/+49 |
| * | Given Decl::isUsed() a flag indicating when to consider the "used" | Douglas Gregor | 2010-06-17 | 1 | -4/+4 |
| * | Fixed conflict between objc_memmove_collectable builtin | Fariborz Jahanian | 2010-06-16 | 1 | -3/+4 |
| * | If a non-dependent base class initializer fails to match any direct or | Douglas Gregor | 2010-06-16 | 1 | -27/+42 |