- 4f4f349 Show either a location or a fixit note, not both, for uninitialized variable warnings. by David Blaikie · 13 years ago
- b332109 Fix a diagnostics crasher with -Wmissing-noreturn in Objective-C by Douglas Gregor · 13 years ago
- 69ff26b The integer type of an enumeration type isn't always canonical by Douglas Gregor · 13 years ago
- 5471bc8 Allow C++0x enumerations with a fixed underlying type in by Douglas Gregor · 13 years ago
- e97179c Implement the Objective-C 'instancetype' type, which is an alias of by Douglas Gregor · 13 years ago
- edc0882 objc-gc: More sema work for properties declared 'weak' by Fariborz Jahanian · 13 years ago
- 3269197 Test for default property synthesis. by Fariborz Jahanian · 13 years ago
- 8697d30 objective-c: this patch (re)introduces objective-c's default property by Fariborz Jahanian · 13 years ago
- 140ab23 objective-c - This patch buffers method implementations by Fariborz Jahanian · 13 years ago
- b0656ec Improve the diagnostic text for -Wmissing-noreturn to include the name by Chandler Carruth · 13 years ago
- e8cff36 objc - fixes a regression in declaring c decls nested in by Fariborz Jahanian · 13 years ago
- 27f0776 Do not warn about [super finalize] in arc mode. by Nico Weber · 13 years ago
- 80cb6e6 Warn on missing [super finalize] calls. by Nico Weber · 13 years ago
- b860739 objective-c - Make warning on unimplemented protocols point by Fariborz Jahanian · 13 years ago
- 9414449 objc-arc: Mention property's attribute by name when by Fariborz Jahanian · 13 years ago
- 8c7e67d Don't warn on category implementing a method, if by Fariborz Jahanian · 13 years ago
- cc075e4 objc - fix up the builtin type for objc_assign_ivar. // rdar://9362887. by Fariborz Jahanian · 13 years ago
- 4eb14ca Do not perform check for missing '[super dealloc]' under ARC as calling -dealloc is illegal in that mode. by Ted Kremenek · 13 years ago
- 9a1ecf0 Warn on missing [super dealloc] calls. by Nico Weber · 13 years ago
- a28948f Restore patch I reversed in r138040. Known buildbot failures are resolved. by Fariborz Jahanian · 13 years ago
- bc03aea objc-arc: @property definitions should default to (strong) when not by Fariborz Jahanian · 13 years ago
- ddddd48 De-Unicode-ify. by NAKAMURA Takumi · 13 years ago
- 730cfb1 objective-c: Using existing infrastructure for finding by Fariborz Jahanian · 13 years ago
- 2112190 objective-c: diagnose protocol inconsistencies in following by Fariborz Jahanian · 13 years ago
- a8e0cd8 Do l-value conversion, etc., on a switch condition expression in by John McCall · 13 years ago
- 270ba59 Revert 136984 and 136927. by Ted Kremenek · 13 years ago
- c25175c Make test/SemaObjC/qualified-protocol-method-conflicts.m always fail and mark it XFAIL. This is a stop gap until the output of the test is deterministic. by Ted Kremenek · 13 years ago
- 6a3bec3 objective-c: diagnose protocol inconsistencies in following by Fariborz Jahanian · 13 years ago
- 7413307 objective-c: Methods declared in methods must type match by Fariborz Jahanian · 13 years ago
- 7898005 objective-c: reverse patch for // rdar://9818354 by Fariborz Jahanian · 13 years ago
- 4eb7522 When complaining about a non-POD second argument to va_arg, use a by Douglas Gregor · 13 years ago
- fefe91e objective-c: warn if implementation of a method in category by Fariborz Jahanian · 13 years ago
- 6722155 Add */& mismatch fixit generation to the Sema::DiagnoseAssignmentResult(). by Anna Zaks · 13 years ago
- 990567c Clean up the analysis of the collection operand to ObjC by John McCall · 13 years ago
- 473506b In ARC we emit an error when compiling: by Argyrios Kyrtzidis · 13 years ago
- eee3ef1 objc: clang should warn if redeclaration of methods by Fariborz Jahanian · 13 years ago
- 527eec8 objective-c: Any use of @synthesize or @dynamic lexically after a method (or C function) implementation by Fariborz Jahanian · 13 years ago
- aab24a6 objc - Diagnose missing method return type specifier under by Fariborz Jahanian · 13 years ago
- 4c91d89 With -Wselector, don't warn about unimplemented optional method by Fariborz Jahanian · 13 years ago
- 48218c6 In debugger mode, make ObjC message sends to unknown selectors return by John McCall · 13 years ago
- 8beb6a2 objc++: Some level of covariance is allowed in ObjC properties. by Fariborz Jahanian · 13 years ago
- f96e904 In ARC mode, consider Objective-C lifetime types (object pointers and by Douglas Gregor · 13 years ago
- 98a5403 Fix a bug where a local variable named 'self' is causing by Fariborz Jahanian · 13 years ago
- 0a68dc7 [ARC] Complain about property without storage attribute when @synthesizing it, not at its declaration. by Argyrios Kyrtzidis · 13 years ago
- 4e7c7f2 objc-arc: Diagnose when captured variable in block literals by Fariborz Jahanian · 13 years ago
- 82007c3 objc++-arc: more diagnosis of converting a weak-unavailable by Fariborz Jahanian · 13 years ago
- 04e5a25 objc-arc: diagnose assignment/cast of a weak-unavailable by Fariborz Jahanian · 13 years ago
- 742352a objc-arc: Support objc_arc_weak_unavailable on those by Fariborz Jahanian · 13 years ago
- 9f084a3 Change the driver's logic about Objective-C runtimes: abstract out a by John McCall · 13 years ago
- 9670e17 objc-arc: enforce performSelector rules in rejecting retaining selectors by Fariborz Jahanian · 13 years ago
- 05d4876 Fix the warning that is emitted when an ownership attribute is applied incorrectly. by Argyrios Kyrtzidis · 13 years ago
- 0a85183 [ARC] When casting from a pointer to an objective-c object with known ownership, if the by Argyrios Kyrtzidis · 13 years ago
- d6a4d18 Revert r133024, "[format strings] correctly suggest correct type for '%@' by Daniel Dunbar · 14 years ago
- d8bba9c Add support for C++ namespace-aware typo correction, e.g., correcting by Douglas Gregor · 14 years ago
- c03fa49 ARC writeback isn't supposed to apply to local indirect pointers, by John McCall · 14 years ago
- 13b21be Factor out (some of) the checking for invalid forms of pointer by Chandler Carruth · 14 years ago
- 831fb96 objc-arc/mrc: Allow ns_returns_not_retained attribute on properties by Fariborz Jahanian · 14 years ago
- 327126e No need to warn if 'unavailable' method/property by Fariborz Jahanian · 14 years ago
- 921c143 objc-arc: Check on a variety of unsafe assignment of retained by Fariborz Jahanian · 14 years ago
- b8b0313 Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about 'ownership', not 'lifetime'. by Argyrios Kyrtzidis · 14 years ago
- a813973 When forming a cycle in objc's inheritance hierarchy, by Fariborz Jahanian · 14 years ago
- d26fef0 Change "cannot assign retained object.." warning to "assigning retained object.." by Argyrios Kyrtzidis · 14 years ago
- 8295b7b objc-arc: Allow unbridged cast of retainable object to by Fariborz Jahanian · 14 years ago
- 1522a7c objc-arc: allow explicit unbridged casts if the source of the cast is a by Fariborz Jahanian · 14 years ago
- b64915a Only accept __bridge_retain in system headers, as Doug suggested. by John McCall · 14 years ago
- 1816442 As a hopefully temporary workaround for a header mistake, treat by John McCall · 14 years ago
- 7acddac Objective-C fast enumeration loop variables are not retained in ARC, but by John McCall · 14 years ago
- b1f7d24 arc: diagnose dereferencing a __weak pointer which may be by Fariborz Jahanian · 14 years ago
- 0f4c4c4 Weaken the type-matching rules for methods that return aggregates when by John McCall · 14 years ago
- edb150b Give this test a triple; I don't think we want to #define __unsafe_unretained by John McCall · 14 years ago
- f85e193 Automatic Reference Counting. by John McCall · 14 years ago
- 84862f6 [format strings] correctly suggest correct type for '%@' specifiers. Fixes <rdar://problem/9607158>. by Ted Kremenek · 14 years ago
- 4c4efee Eliminate the -f[no]objc-infer-related-result-type flags; there's no by Douglas Gregor · 14 years ago
- 926df6c Implement Objective-C Related Result Type semantics. by Douglas Gregor · 14 years ago
- 45937ae Restore 'atomic' as an attribute of objc properties. by Fariborz Jahanian · 14 years ago
- b92003b Remove 'atomic' as a property attribute keyword. by Fariborz Jahanian · 14 years ago
- 175df89 More coherent diagnostic when a stack variable is by Fariborz Jahanian · 14 years ago
- 3b5904b Emit an error when trying to @encode an incomplete type. by Argyrios Kyrtzidis · 14 years ago
- 377e1bd Relax the conversion rules for Objective-C GC qualifiers a by Douglas Gregor · 14 years ago
- 0a241a1 Change -Wparentheses to not imply -Widiomatic-parentheses. Users rarely want to see these warnings, and often explicitly pass -Wparentheses. by Ted Kremenek · 14 years ago
- 8a285ae Emit a -Wnull-dereference warning for "*null" not just "*null = something". Addresses rdar://9269271. by Argyrios Kyrtzidis · 14 years ago
- ec385cf When Sema::ClassifyName() finds an invalid ivar reference, return an by Douglas Gregor · 14 years ago
- 89ebaed "note" location of forward class used as receiver of by Fariborz Jahanian · 14 years ago
- 50465d1 There were some frustrating problems with the implementation of by Chandler Carruth · 14 years ago
- 64089ce Fixes an instance method meta-data generation bug in by Fariborz Jahanian · 14 years ago
- 7c2bdcb Fix a bug in calculation of composite type by Fariborz Jahanian · 14 years ago
- 5272adf Enforce nonnull __attribute__ on Objective-C method calls. // rdar://9287695 by Fariborz Jahanian · 14 years ago
- eefa76e Allow shadowin of 'self' in objc methods in by Fariborz Jahanian · 14 years ago
- fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 14 years ago
- b8f17ab Redeclaration of 'self' should be flagged in by Fariborz Jahanian · 14 years ago
- 627788c Fix a regression where the initializer implements by Fariborz Jahanian · 14 years ago
- b7bc34a Warn for any kind of initialization if initializer does not by Fariborz Jahanian · 14 years ago
- f04eb2d Now that the analyzer is distinguishing between uninitialized uses that by Chandler Carruth · 14 years ago
- 759abb4 Fix lookup for class messages sent to qualified-class by Fariborz Jahanian · 14 years ago
- b460210 Also 'self' in blocks need be handled specially. // rdar://9181463 by Fariborz Jahanian · 14 years ago
- f2d74cc 'self' is objective-c's 'self' objc pointer only in by Fariborz Jahanian · 14 years ago
- 077f490 More coherent diagnostic attempting to assign to a member of a const object returned by Fariborz Jahanian · 14 years ago
- 3d9ce90 Make diagnostic clearer. by Fariborz Jahanian · 14 years ago
- 2234873 Allow GC qualifiers to be added/removed by conversions from/to void* by John McCall · 14 years ago
- 7ea2193 Properly move attributes to the decl spec when applying them there. by John McCall · 14 years ago