| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Extend the ASTContext constructor to delay the initialization of | Douglas Gregor | 2011-09-02 | 1 | -11/+11 |
* | Extend the self-reference warning to catch when a constructor references itse... | Richard Trieu | 2011-09-01 | 1 | -13/+60 |
* | objective-c: this patch (re)introduces objective-c's default property | Fariborz Jahanian | 2011-08-31 | 1 | -18/+0 |
* | Minor clean up of objc's decl context stuff. | Fariborz Jahanian | 2011-08-29 | 1 | -1/+1 |
* | Warn on missing [super finalize] calls. | Nico Weber | 2011-08-28 | 1 | -0/+6 |
* | Introduce support for a simple module import declaration, which | Douglas Gregor | 2011-08-26 | 1 | -0/+14 |
* | Refactor and fix checking for initialization of flexible array members. The ... | Eli Friedman | 2011-08-23 | 1 | -21/+0 |
* | Fix an incorrect note. | Matt Beaumont-Gay | 2011-08-23 | 1 | -1/+1 |
* | Warn on missing [super dealloc] calls. | Nico Weber | 2011-08-22 | 1 | -0/+7 |
* | Restore patch I reversed in r138040. Known buildbot | Fariborz Jahanian | 2011-08-22 | 1 | -11/+23 |
* | Revers r138040. Need to look at a few buildbot failures. | Fariborz Jahanian | 2011-08-19 | 1 | -23/+11 |
* | objective-c: Bring objective-c handling of decl context | Fariborz Jahanian | 2011-08-19 | 1 | -11/+23 |
* | Fix the rest of the indent goofiness here. | Chandler Carruth | 2011-08-19 | 1 | -3/+3 |
* | Fix an egregious formatting goof. | Chandler Carruth | 2011-08-19 | 1 | -19/+19 |
* | Don't accept a typo correction if the corrected identifier is the same as the | Kaelyn Uhrain | 2011-08-18 | 1 | -1/+2 |
* | Rework DiagnoseInvalidRedeclaration to add the ability to correct typos when | Kaelyn Uhrain | 2011-08-18 | 1 | -23/+69 |
* | Track in the AST whether a function is constexpr. | Richard Smith | 2011-08-15 | 1 | -4/+52 |
* | Implement function template specialization at class scope extension in Micros... | Francois Pichet | 2011-08-14 | 1 | -9/+35 |
* | Fix some comments. | Richard Smith | 2011-08-12 | 1 | -5/+3 |
* | Overriding the predefined Protocol isn't something that's actually | Douglas Gregor | 2011-08-12 | 1 | -5/+0 |
* | Encapsulate the Objective-C id/Class/SEL "redefinition" types in | Douglas Gregor | 2011-08-11 | 1 | -3/+3 |
* | Match type names and give more info for out-of-line function definition errors. | Kaelyn Uhrain | 2011-08-04 | 1 | -8/+43 |
* | Make the type of the IntegerLiteral for bitfield paddings an actual | Douglas Gregor | 2011-08-03 | 1 | -3/+4 |
* | Add a fixit for removal of unused label. | Anna Zaks | 2011-07-28 | 1 | -1/+17 |
* | Make Sema::LocallyScopedExternalDecls lazily deserialized. In theory, | Douglas Gregor | 2011-07-28 | 1 | -3/+20 |
* | Provide fixit for static use of objective-c type | Fariborz Jahanian | 2011-07-26 | 1 | -9/+22 |
* | objective-c: Provide a 'fixit' when class was used | Fariborz Jahanian | 2011-07-25 | 1 | -1/+2 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -13/+13 |
* | In Objective-C, pull arbitrary attributes from overridden | John McCall | 2011-07-22 | 1 | -3/+12 |
* | Add a hackaround to avoid the crash in PR10355. However, our recovery | Douglas Gregor | 2011-07-14 | 1 | -2/+4 |
* | Add 'mutable' to the function declarator chunk, to be used when | Douglas Gregor | 2011-07-13 | 1 | -0/+1 |
* | Fix an incorrect namespace typo-correction diagnostic, from Kaelyn | Douglas Gregor | 2011-07-13 | 1 | -3/+0 |
* | Fix a bug where a local variable named 'self' is causing | Fariborz Jahanian | 2011-07-12 | 1 | -0/+1 |
* | Centralize the getCanonicalType() calls in the Itanium C++ mangling | Douglas Gregor | 2011-07-12 | 1 | -1/+2 |
* | Don't complain about missing return statements for naked | Douglas Gregor | 2011-07-11 | 1 | -0/+4 |
* | Remove unused parameter from ActOnDeclarator. | Anders Carlsson | 2011-07-04 | 1 | -3/+2 |
* | Fix a typo, remove a tab, canonicalize some spacing. No functional change. | Nick Lewycky | 2011-07-02 | 1 | -3/+3 |
* | Fix for PR7410. Allow functions in a derived class that improperly overwrite ... | Richard Trieu | 2011-07-01 | 1 | -1/+1 |
* | Fix AST representations of alias-declarations which define tag types. Inside ... | Richard Smith | 2011-07-01 | 1 | -1/+6 |
* | When redeclaring a local extern in the same scope, make sure that we | Douglas Gregor | 2011-06-29 | 1 | -2/+12 |
* | Add support for C++ namespace-aware typo correction, e.g., correcting | Douglas Gregor | 2011-06-28 | 1 | -32/+46 |
* | Centralize all checks for a C++ tag definition inside a typename in | Argyrios Kyrtzidis | 2011-06-28 | 1 | -1/+1 |
* | Centralize the check for a tag definition in a Declarator::PrototypeContext i... | Argyrios Kyrtzidis | 2011-06-28 | 1 | -9/+1 |
* | Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ... | Argyrios Kyrtzidis | 2011-06-24 | 1 | -5/+5 |
* | Remove multiple use of weak_import attribute on | Fariborz Jahanian | 2011-06-23 | 1 | -1/+1 |
* | Remove weak_import attribute on new declaration. | Fariborz Jahanian | 2011-06-23 | 1 | -3/+1 |
* | Issue warning if weak_import attribute is added to an already | Fariborz Jahanian | 2011-06-22 | 1 | -4/+9 |
* | llvm-gcc treats a tentative definition with a previous | Fariborz Jahanian | 2011-06-20 | 1 | -0/+6 |
* | When an explicit specialization has a storage specifier, error if that | Douglas Gregor | 2011-06-17 | 1 | -3/+12 |
* | Downgrade the error complaining about presence of a storage class | Douglas Gregor | 2011-06-17 | 1 | -1/+1 |