| Commit message (Expand) | Author | Age | Files | Lines |
* | Cleanup of OpaquePtr. No functionality changes. | Serge Pavlov | 2013-08-27 | 1 | -2/+2 |
* | Refactor all diagnosing of TypoCorrections through a common function, in | Richard Smith | 2013-08-17 | 1 | -27/+17 |
* | ObjectiveC [Sema]. This patch makes sure that all inherited | Fariborz Jahanian | 2013-08-14 | 1 | -0/+10 |
* | Omit llvm:: before SmallVector and SmallVectorImpl. We have using directive ... | Robert Wilhelm | 2013-08-10 | 1 | -1/+1 |
* | Even more code conformance. | Robert Wilhelm | 2013-07-17 | 1 | -1/+1 |
* | More code conformance. | Fariborz Jahanian | 2013-07-17 | 1 | -1/+1 |
* | This patch removes unused parameter allProperties and converts remaining | Fariborz Jahanian | 2013-07-16 | 1 | -10/+6 |
* | Objective-C: merge objc_requires_super attribute of | Fariborz Jahanian | 2013-07-09 | 1 | -1/+9 |
* | ArrayRef'ize Sema::FinalizeDeclaratorGroup, Sema::BuildDeclaratorGroup and | Rafael Espindola | 2013-07-09 | 1 | -4/+4 |
* | Remove some useless declarations (found by scan-build) | Sylvestre Ledru | 2013-07-06 | 1 | -1/+0 |
* | ObjectiveC: diagnose duplicate declaration of | Fariborz Jahanian | 2013-06-26 | 1 | -0/+13 |
* | Don't use unnamed local enums as template arguments. | Joerg Sonnenberger | 2013-06-26 | 1 | -2/+2 |
* | [Sema] Call CheckParmForFunctionDef on ObjC method parameters | Reid Kleckner | 2013-06-24 | 1 | -4/+4 |
* | Delete dead code. | Eli Friedman | 2013-06-21 | 1 | -7/+0 |
* | Delete dead code. | Eli Friedman | 2013-06-21 | 1 | -4/+1 |
* | When building a module, keep *all* declared methods in the global method pool. | Douglas Gregor | 2013-06-21 | 1 | -0/+4 |
* | When declaring an ObjC interface decl with a @compatibility_alias alias name,... | Argyrios Kyrtzidis | 2013-06-18 | 1 | -1/+36 |
* | Objective-C: Fixes a typo correction bug where a | Fariborz Jahanian | 2013-06-18 | 1 | -2/+4 |
* | Objective-C [qoi]: privide typo correction for selectors | Fariborz Jahanian | 2013-06-18 | 1 | -6/+30 |
* | Objective-C [qoi]: Provide fixit hint when message with typo | Fariborz Jahanian | 2013-06-17 | 1 | -3/+15 |
* | Unify return type checking for functions and ObjC methods. Move all the | Eli Friedman | 2013-06-14 | 1 | -14/+3 |
* | Don't create a StringRef from a temporary string. | Richard Trieu | 2013-06-06 | 1 | -1/+1 |
* | Objective-C: Provide fixit with suggested spelling correction | Fariborz Jahanian | 2013-06-05 | 1 | -0/+51 |
* | fixes a comment in my last patch. | Fariborz Jahanian | 2013-05-30 | 1 | -1/+1 |
* | Objective-C: Implements gcc's -Wselector option | Fariborz Jahanian | 2013-05-30 | 1 | -1/+48 |
* | Fix potential infinite loop when iterating over redeclarations of an ObjMetho... | Argyrios Kyrtzidis | 2013-05-30 | 1 | -0/+2 |
* | Objective-C arc: Diagnose when user attempts to | Fariborz Jahanian | 2013-05-16 | 1 | -1/+1 |
* | Use only explicit bool conversion operator | David Blaikie | 2013-05-15 | 1 | -1/+1 |
* | Objective-C error recovery. This patch makes a quick | Fariborz Jahanian | 2013-05-13 | 1 | -0/+2 |
* | Keep track of an @implementation's super class name location, if one was prov... | Argyrios Kyrtzidis | 2013-05-03 | 1 | -1/+1 |
* | Fix an assertion hit in Sema::CheckObjCMethodOverrides. | Argyrios Kyrtzidis | 2013-04-27 | 1 | -4/+6 |
* | Objective-C: When reporting on missing property accessor implementation in | Fariborz Jahanian | 2013-04-24 | 1 | -12/+2 |
* | Use the extra info in global method pool to speed up looking for ObjC overrid... | Argyrios Kyrtzidis | 2013-04-17 | 1 | -4/+40 |
* | Enhance the ObjC global method pool to record whether there were 0, 1, or >= ... | Argyrios Kyrtzidis | 2013-04-17 | 1 | -4/+10 |
* | Parsing support for thread_local and _Thread_local. We give them the same | Richard Smith | 2013-04-12 | 1 | -5/+7 |
* | Objective-C: This patch fixes a none-issuance of warning | Fariborz Jahanian | 2013-04-09 | 1 | -1/+4 |
* | Objective-C: Issue deprecated warning when using a | Fariborz Jahanian | 2013-04-04 | 1 | -1/+7 |
* | Be sure to check ARC conventions on the implicit method declarations | John McCall | 2013-04-04 | 1 | -10/+10 |
* | Add 178663 back. | Rafael Espindola | 2013-04-03 | 1 | -2/+2 |
* | Revert 178663. | Rafael Espindola | 2013-04-03 | 1 | -2/+2 |
* | Don't compute a patched/semantic storage class. | Rafael Espindola | 2013-04-03 | 1 | -2/+2 |
* | When looking for overridden ObjC methods, don't ignore 'hidden' ones. | Argyrios Kyrtzidis | 2013-03-29 | 1 | -4/+5 |
* | Split "incomplete implementation" warnings for ObjC into separate warnings. | Ted Kremenek | 2013-03-27 | 1 | -14/+14 |
* | Add a clarifying note when a return statement is rejected because | John McCall | 2013-03-19 | 1 | -1/+2 |
* | Add missing diagnostic for a nested-name-specifier on a free-standing type de... | Richard Smith | 2013-03-18 | 1 | -1/+1 |
* | Silence a number of static analyzer warnings with assertions and such. | Jordan Rose | 2013-03-05 | 1 | -3/+3 |
* | Retain all hidden methods in the global method pool, because they may become ... | Douglas Gregor | 2013-02-07 | 1 | -0/+4 |
* | Eliminate Sema::CompareProperties(), which was walking over a pile of | Douglas Gregor | 2013-01-21 | 1 | -6/+2 |
* | Eliminate the oddly-named Sema::ComparePropertiesInBaseAndSuper, which | Douglas Gregor | 2013-01-21 | 1 | -1/+0 |
* | When checking the parameter types of an Objective-C method, don't | Douglas Gregor | 2013-01-18 | 1 | -2/+0 |