1. 33337ca Update aosp/master clang for rebase to r235153 by Pirama Arumuga Nainar · 9 years ago
  2. 176edba Update aosp/master Clang for rebase to r222490. by Stephen Hines · 10 years ago
  3. c568f1e Update Clang for rebase to r212749. by Stephen Hines · 10 years ago
  4. 84e41cd ObjectiveC. ObjectiveC's collection selector expression in by Fariborz Jahanian · 11 years ago
  5. 624421f Consolidating the notion of a GNU attribute parameter with the attribute argument list. by Aaron Ballman · 11 years ago
  6. 4bdb602 Fix another place where clang check objc selector name instead of checking the selector family by Jean-Daniel Dupas · 11 years ago
  7. 419245e Objective-C [qoi]: privide typo correction for selectors by Fariborz Jahanian · 11 years ago
  8. 443adec Objective-C (mostly arc): Under ARC, we often have unneeded qualifiers by Fariborz Jahanian · 11 years ago
  9. f373c5d When checking the parameter types of an Objective-C method, don't by Douglas Gregor · 11 years ago
  10. f530ff7 Change checkUnsafeAssignLiteral() to use the new Sema::CheckLiteralKind(). by Ted Kremenek · 11 years ago
  11. 9d08401 Extend checkUnsafeAssigns() to also handle assigning an object literal to a weak reference. by Ted Kremenek · 11 years ago
  12. 904a326 Revert "Warn if a __weak variable is initialized with an Objective-C object literal." by Ted Kremenek · 11 years ago
  13. 7c44106 Warn if a __weak variable is initialized with an Objective-C object literal. by Ted Kremenek · 11 years ago
  14. 607f587 revert r160839 for now. by Fariborz Jahanian · 12 years ago
  15. 304efd5 objc-arc: When objects with known CF semantics are assigned to by Fariborz Jahanian · 12 years ago
  16. b13291a Capitalize "Objective-C" and "C++" in user-facing contexts. by Jordan Rose · 12 years ago
  17. bd2e27e objc-arc: warn when assigning retained object to by Fariborz Jahanian · 12 years ago
  18. b2f6820 Added a new attribute, objc_root_class, which informs the compiler when a root class is intentionally declared. by Patrick Beard · 12 years ago
  19. 3306ec1 After numerous requests, have Objective-C 'method declared here' notes mention the actual method. This looks better within an IDE, where text isn't always regurgitated in the presentation of a warning. Fixes radar 10914035. by Ted Kremenek · 12 years ago
  20. d85bf9d Only complain about __strong __strong id, not __strong SomeStrongTypedef by John McCall · 12 years ago
  21. 52b6236 Look for declaration of CFBridgingRetain/CFBridgingRetain before by Fariborz Jahanian · 12 years ago
  22. 7eb82f0 objc-arc: In various diagnostics mention by Fariborz Jahanian · 12 years ago
  23. 2fe9b7f Modify how the -verify flag works. Currently, the verification string and by Richard Trieu · 13 years ago
  24. b302996 Use Sema::RequireCompleteType to check for the completeness of by Douglas Gregor · 13 years ago
  25. f21a92d objc-arc: 'readonly' property of retainable object by Fariborz Jahanian · 13 years ago
  26. 3045ce7 Relax restriction of assigning to 'self' in ARC when a method is attributed with ns_consumes_self. Fixes <rdar://problem/10274056>. by Ted Kremenek · 13 years ago
  27. 5acb0c9 Teach the ARC compiler to not require __bridge casts when by John McCall · 13 years ago
  28. a1de8cb objc-arc: Improve arc diagnostic when method is not by Fariborz Jahanian · 13 years ago
  29. 175fb10 objc arc: Suppress certain arc diagnostics on unavailable by Fariborz Jahanian · 13 years ago
  30. d1e40d5 Make -fobjc-nonfragile-abi the -cc1 default, since it's the by John McCall · 13 years ago
  31. 5b76f37 [ARC] Allow forming 'id*' in an unevaluated context. Fixes rdar://10148540. by Argyrios Kyrtzidis · 13 years ago
  32. bc03aea objc-arc: @property definitions should default to (strong) when not by Fariborz Jahanian · 13 years ago
  33. a8e0cd8 Do l-value conversion, etc., on a switch condition expression in by John McCall · 13 years ago
  34. 7898005 objective-c: reverse patch for // rdar://9818354 by Fariborz Jahanian · 13 years ago
  35. fefe91e objective-c: warn if implementation of a method in category by Fariborz Jahanian · 13 years ago
  36. 990567c Clean up the analysis of the collection operand to ObjC by John McCall · 13 years ago
  37. 473506b In ARC we emit an error when compiling: by Argyrios Kyrtzidis · 13 years ago
  38. 527eec8 objective-c: Any use of @synthesize or @dynamic lexically after a method (or C function) implementation by Fariborz Jahanian · 13 years ago
  39. f96e904 In ARC mode, consider Objective-C lifetime types (object pointers and by Douglas Gregor · 13 years ago
  40. 0a68dc7 [ARC] Complain about property without storage attribute when @synthesizing it, not at its declaration. by Argyrios Kyrtzidis · 13 years ago
  41. 9f084a3 Change the driver's logic about Objective-C runtimes: abstract out a by John McCall · 13 years ago
  42. 05d4876 Fix the warning that is emitted when an ownership attribute is applied incorrectly. by Argyrios Kyrtzidis · 13 years ago
  43. c03fa49 ARC writeback isn't supposed to apply to local indirect pointers, by John McCall · 13 years ago
  44. 831fb96 objc-arc/mrc: Allow ns_returns_not_retained attribute on properties by Fariborz Jahanian · 13 years ago
  45. 921c143 objc-arc: Check on a variety of unsafe assignment of retained by Fariborz Jahanian · 13 years ago
  46. b8b0313 Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about 'ownership', not 'lifetime'. by Argyrios Kyrtzidis · 13 years ago
  47. d26fef0 Change "cannot assign retained object.." warning to "assigning retained object.." by Argyrios Kyrtzidis · 13 years ago
  48. 8295b7b objc-arc: Allow unbridged cast of retainable object to by Fariborz Jahanian · 13 years ago
  49. 7acddac Objective-C fast enumeration loop variables are not retained in ARC, but by John McCall · 13 years ago
  50. b1f7d24 arc: diagnose dereferencing a __weak pointer which may be by Fariborz Jahanian · 13 years ago
  51. f85e193 Automatic Reference Counting. by John McCall · 13 years ago