| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix false positive in -Wunused-variable when a ctor call make involve cleanups. | David Blaikie | 2012-10-24 | 1 | -0/+2 |
* | Add a new warning -Wmissing-variable-declarations, to warn about variables | Eli Friedman | 2012-10-23 | 1 | -0/+11 |
* | Rework implementation of DR1492: Apply the resolution to operator delete too, | Richard Smith | 2012-10-20 | 1 | -0/+14 |
* | Allow objc_requires_super to be used to check class methods as well. | Jordan Rose | 2012-10-19 | 1 | -10/+3 |
* | Implement C++ 10.3p16 - overrides involving deleted functions must match. | David Blaikie | 2012-10-17 | 1 | -11/+38 |
* | Fix warnings introduced by r165826. | DeLesley Hutchins | 2012-10-12 | 1 | -0/+2 |
* | Thread-safety analysis: support multiple thread-safety attributes on | DeLesley Hutchins | 2012-10-12 | 1 | -0/+17 |
* | Fix typo correction of one qualified name to another. | David Blaikie | 2012-10-12 | 1 | -3/+9 |
* | When storing the C++ overridden methods, store them once for the | Argyrios Kyrtzidis | 2012-10-09 | 1 | -1/+2 |
* | Fixed FunctionTypeLoc source range. | Abramo Bagnara | 2012-10-04 | 1 | -6/+21 |
* | Fixed ParamDecl source range for implicit typed k&r parameters. | Abramo Bagnara | 2012-10-04 | 1 | -0/+3 |
* | Fix scope location when parsing GNU attributes. | Michael Han | 2012-10-04 | 1 | -2/+1 |
* | Change how the SelfReferenceChecker handles MemberExpr. Instead of treating | Richard Trieu | 2012-10-03 | 1 | -11/+39 |
* | Tweak diagnostic text to indicate that __weak on a local variable is only all... | Ted Kremenek | 2012-10-02 | 1 | -1/+3 |
* | PR13978: A 'decltype' DeclSpec has an expression representation, not a type | Richard Smith | 2012-10-01 | 1 | -1/+1 |
* | Cleaning up the self initialization checker. | Richard Trieu | 2012-10-01 | 1 | -31/+38 |
* | Move the 'find macro by spelling' infrastructure to the Preprocessor class and | Dmitri Gribenko | 2012-09-29 | 1 | -1/+1 |
* | Add a warning (off by default) for repeated use of the same weak property. | Jordan Rose | 2012-09-28 | 1 | -0/+15 |
* | Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S... | Sylvestre Ledru | 2012-09-27 | 1 | -2/+2 |
* | Fix a typo 'iff' => 'if' | Sylvestre Ledru | 2012-09-27 | 1 | -2/+2 |
* | Fix for r163013 regression and further __interface enhancement. | John McCall | 2012-09-25 | 1 | -5/+6 |
* | Make warnings about uninitialized fields include the field name. | Hans Wennborg | 2012-09-21 | 1 | -3/+1 |
* | Include types when a definition's type differs from a prior declaration. | David Blaikie | 2012-09-20 | 1 | -1/+1 |
* | Handle lambdas where the lambda-declarator is an explicit "(void)". PR13854. | Eli Friedman | 2012-09-20 | 1 | -15/+17 |
* | Per discussion on cfe-dev, remove -Wunique-enums entirely. There | Ted Kremenek | 2012-09-18 | 1 | -230/+0 |
* | -Warc-retain-cycles: warn at variable initialization as well as assignment. | Jordan Rose | 2012-09-15 | 1 | -1/+5 |
* | objective-C arc: remove -Warc-abi in its entirety. | Fariborz Jahanian | 2012-09-14 | 1 | -36/+0 |
* | Fix warning on qualified typedef with 'unused' attribute, from Jason Haslam! | Douglas Gregor | 2012-09-14 | 1 | -1/+1 |
* | Promote the warning about extra qualification on a declaration from a | Douglas Gregor | 2012-09-13 | 1 | -1/+2 |
* | objective-C: Improving diagnostocs for missing call to | Fariborz Jahanian | 2012-09-10 | 1 | -2/+2 |
* | objective-C: introduce __attribute((objc_requires_super)) on method | Fariborz Jahanian | 2012-09-07 | 1 | -1/+2 |
* | refactoring + objective-C specific test for my last patch. | Fariborz Jahanian | 2012-09-06 | 1 | -5/+1 |
* | Dont cast away const needlessly. Found by gcc48 -Wcast-qual. | Roman Divacky | 2012-09-06 | 1 | -2/+2 |
* | PR13775: When checking for a tag type being shadowed by some other declaration, | Richard Smith | 2012-09-06 | 1 | -19/+17 |
* | c error recovery. treat an invalid redeclaration | Fariborz Jahanian | 2012-09-05 | 1 | -0/+3 |
* | Changed the remaining dead asserts to llvm_unreachable. | Joao Matos | 2012-09-01 | 1 | -7/+5 |
* | Improved MSVC __interface support by adding first class support for it, inste... | Joao Matos | 2012-08-31 | 1 | -16/+60 |
* | The presence of a user-*declared* constructor makes the default | Douglas Gregor | 2012-08-30 | 1 | -6/+6 |
* | Add -Wduplicate-enum warning. Clang will emit this warning when an implicitly | Richard Trieu | 2012-08-30 | 1 | -0/+177 |
* | CUDA: give static storage class to __shared__ and __constant__ | Peter Collingbourne | 2012-08-28 | 1 | -0/+8 |
* | Fix the CC-matching logic for instance methods in the MS ABI. | John McCall | 2012-08-25 | 1 | -2/+30 |
* | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer | 2012-08-23 | 1 | -20/+15 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -12/+11 |
* | Better wording for reference self-initialization warning. | Hans Wennborg | 2012-08-20 | 1 | -1/+4 |
* | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith | 2012-08-18 | 1 | -24/+36 |
* | c: privide deprecated warning when __private_extern__ storage | Fariborz Jahanian | 2012-08-17 | 1 | -1/+3 |
* | Warn about self-initialization of references. | Hans Wennborg | 2012-08-17 | 1 | -6/+9 |
* | Don't do jump-scope checking when code completion is enabled. It's | Douglas Gregor | 2012-08-17 | 1 | -1/+2 |
* | Add support for "type safety" attributes that allow checking that 'void *' | Dmitri Gribenko | 2012-08-17 | 1 | -0/+36 |
* | objective-C++: issue diagnostic when ivar type is | Fariborz Jahanian | 2012-08-16 | 1 | -2/+8 |