| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix up various builtin declaration of objc_msgSend families | Fariborz Jahanian | 2013-01-04 | 1 | -0/+20 |
* | Warn on unused auto variables. | Rafael Espindola | 2013-01-03 | 1 | -2/+3 |
* | Use early returns to reduce indentation. | Rafael Espindola | 2013-01-03 | 1 | -31/+34 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -12/+12 |
* | Use hasCLanguageLinkage when warning about non C return types. | Rafael Espindola | 2012-12-30 | 1 | -1/+1 |
* | Reject overloading of two static extern C functions. | Rafael Espindola | 2012-12-28 | 1 | -28/+2 |
* | Implement dcl.link paragraph 5. | Rafael Espindola | 2012-12-27 | 1 | -0/+40 |
* | Add 171048 back but invalidate the cache of all redeclarations when setting | Rafael Espindola | 2012-12-25 | 1 | -3/+7 |
* | Revert r171048, "Cache visibility of decls." | NAKAMURA Takumi | 2012-12-25 | 1 | -7/+3 |
* | Cache visibility of decls. | Rafael Espindola | 2012-12-25 | 1 | -3/+7 |
* | Move a declaration closer to its use. No functionality change. | Nico Weber | 2012-12-23 | 1 | -2/+2 |
* | Add back -Wduplicate-enum which I mistakenly removed. | Ted Kremenek | 2012-12-22 | 1 | -0/+178 |
* | Don't eagerly emit a global static merged with a local extern. | Rafael Espindola | 2012-12-21 | 1 | -2/+7 |
* | Revert "Warn if a __weak variable is initialized with an Objective-C object l... | Ted Kremenek | 2012-12-20 | 1 | -18/+1 |
* | Warn if a __weak variable is initialized with an Objective-C object literal. | Ted Kremenek | 2012-12-20 | 1 | -1/+18 |
* | Revert r170500. It over-zealously converted *ALL* things named Attributes, wh... | Bill Wendling | 2012-12-20 | 1 | -1/+1 |
* | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 2012-12-19 | 1 | -1/+1 |
* | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie | 2012-12-19 | 1 | -3/+3 |
* | Merge storage classes even when contexts don't match. | Rafael Espindola | 2012-12-18 | 1 | -2/+1 |
* | The underlying type for an enum should be an integer type, not another enum. | Eli Friedman | 2012-12-18 | 1 | -1/+5 |
* | When warning about a missing prototype because a function declaration is miss... | Anders Carlsson | 2012-12-18 | 1 | -2/+19 |
* | IdentifierResolver: Remove an unnecessary include and an unused parameter. | Nico Weber | 2012-12-17 | 1 | -1/+1 |
* | Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it. | Argyrios Kyrtzidis | 2012-12-14 | 1 | -2/+2 |
* | Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it, | Eli Friedman | 2012-12-13 | 1 | -10/+8 |
* | Speeds up parsing of global declarations in cases where the warning | Manuel Klimek | 2012-12-12 | 1 | -1/+4 |
* | Virtual method overrides can no longer have mismatched calling conventions. ... | Aaron Ballman | 2012-12-09 | 1 | -0/+1 |
* | Properly compute triviality for explicitly-defaulted or deleted special members. | Richard Smith | 2012-12-08 | 1 | -182/+3 |
* | Fix analysis based warnings so that all warnings are emitted when compiling | DeLesley Hutchins | 2012-12-07 | 1 | -1/+3 |
* | Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body | Argyrios Kyrtzidis | 2012-12-06 | 1 | -0/+8 |
* | In C++, if we hit an error in the class-head, don't try to parse the class body. | Richard Smith | 2012-12-05 | 1 | -1/+3 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -14/+13 |
* | Merge function types in C. | Rafael Espindola | 2012-11-29 | 1 | -0/+6 |
* | Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, | Argyrios Kyrtzidis | 2012-11-28 | 1 | -4/+4 |
* | Allow an ASTConsumer to selectively skip function bodies while parsing. Patch | Richard Smith | 2012-11-27 | 1 | -0/+3 |
* | Add r168519 back, but with a fix to also merge the used flag in variables. | Rafael Espindola | 2012-11-25 | 1 | -0/+8 |
* | Revert r168519, "Merge used flags so that we don't have to iterate on isUsed.... | NAKAMURA Takumi | 2012-11-24 | 1 | -4/+0 |
* | Merge used flags so that we don't have to iterate on isUsed. With this change | Rafael Espindola | 2012-11-23 | 1 | -0/+4 |
* | PR14381: Never skip constexpr function bodies when code-completing. We may need | Richard Smith | 2012-11-19 | 1 | -0/+16 |
* | A step towards sorting out handling of triviality of special members in C++11. | Richard Smith | 2012-11-16 | 1 | -13/+22 |
* | Provide the correct mangling and linkage for certain unnamed nested classes. | David Blaikie | 2012-11-14 | 1 | -0/+5 |
* | For classes that have the warn_unused_result attribute, don't apply the | Kaelyn Uhrain | 2012-11-13 | 1 | -1/+5 |
* | Enable C++11 attribute syntax for warn_unused_result and allow it to be | Kaelyn Uhrain | 2012-11-12 | 1 | -0/+8 |
* | PR13788: Don't perform checks on the initializer of a dependently-typed | Richard Smith | 2012-11-09 | 1 | -4/+3 |
* | Avoid to write function name in comment. Thanks to Dmitri Gribenko. | Abramo Bagnara | 2012-11-08 | 1 | -7/+6 |
* | Readded line removed by mistake. | Abramo Bagnara | 2012-11-08 | 1 | -0/+1 |
* | Fixed converted ConstantArrayTypeLoc range. Added a missing testcase for Cons... | Abramo Bagnara | 2012-11-08 | 1 | -19/+71 |
* | Partially roll back r166898; it exposed a bug in the standard. | Richard Smith | 2012-10-29 | 1 | -1/+2 |
* | Revert functional part of r166896 and just suppress -Wunneeded-internal-decla... | Richard Smith | 2012-10-28 | 1 | -8/+7 |
* | When determining whether to try evaluating the initializer of a variable, check | Richard Smith | 2012-10-28 | 1 | -1/+1 |
* | In -Wunneeded-internal-declaration, suppress the warning for variables which | Richard Smith | 2012-10-28 | 1 | -1/+8 |