1. 6805fc4 Revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65244. by Steve Naroff · 16 years ago
  2. d85ba92 Contains the following (related to problems found while investigting <rdar://problem/6497631> Message lookup is sometimes different than gcc's). by Steve Naroff · 16 years ago
  3. 262a5dd Add support for GCC ObjC extension "Class<protocol>". Sigh. by Steve Naroff · 16 years ago
  4. c84582b Warn about bogus protocol qualifiers. by Steve Naroff · 16 years ago
  5. 235e0bb Warn on use of __weak attribute on local variable (objc2 gc specific). by Fariborz Jahanian · 16 years ago
  6. 6c4e040 Add test case to record a couple inconsistencies with GCC (found in <rdar://problem/6561076> [clang on Xcode] warning: cannot find protocol definition for 'OzzyP'). by Steve Naroff · 16 years ago
  7. 0bbc135 by Steve Naroff · 16 years ago
  8. a442ad9 Fix <rdar://problem/6500554> missing objc error message. by Steve Naroff · 16 years ago
  9. 466a8f2 Fix <rdar://problem/6586239> bitfield constraints not enforced (for ObjC) by Steve Naroff · 16 years ago
  10. f9b6345 Use -verify for consistency. by Eli Friedman · 16 years ago
  11. aa57e86 Downgrade complaints about calling unavailable functions to a warning by Douglas Gregor · 16 years ago
  12. f17cb36 Start improving diagnostics that relate to subcharacters of string literals. by Chris Lattner · 16 years ago
  13. 2d46446 pass -verify in exprs.m, merge const-id.m into message.m by Chris Lattner · 16 years ago
  14. 9c039b5 fix rdar://6597252: two exactly identical pointer types are always by Chris Lattner · 16 years ago
  15. 7699a53 warn about interfaces that inherit from deprecated classes. by Chris Lattner · 16 years ago
  16. de3fea8 warn about categories that implement deprecated interfaces. by Chris Lattner · 16 years ago
  17. fb1bb82 do not warn about uses of deprecated decls when in an out-of-line objc method by Chris Lattner · 16 years ago
  18. 51f6fb3 Add support for deprecating ObjC properties. Unlike GCC, we warn that the by Chris Lattner · 16 years ago
  19. 083c23e Adopt a more principled approach to invalid declarations: by Douglas Gregor · 16 years ago
  20. 2a3bef9 add support for deprecated objc ivars. by Chris Lattner · 16 years ago
  21. 5727618 specify a triple to use, otherwise we get errors on this test for by Chris Lattner · 16 years ago
  22. 2cb9eca update expected-warning line. by Chris Lattner · 16 years ago
  23. 02ee8a1 Add support for deprecated Obj-C methods. The semantics mostly match what gcc has. by Anders Carlsson · 16 years ago
  24. a9b9846 add parser and type checking support for attribute((objc_exception)). by Chris Lattner · 16 years ago
  25. eb3b515 rename test by Chris Lattner · 16 years ago
  26. 9fc9cb5 Fix <rdar://problem/6499801> clang does not detect objc type mismatch in conditional expr by Steve Naroff · 16 years ago
  27. 9a8739a Turn warning into error. Minor incompatibility with GCC (for scalar types, GCC only produces a warning). by Steve Naroff · 16 years ago
  28. 9f18e4d Remove some non-ascii characters. Thanks Gabor. by Steve Naroff · 16 years ago
  29. 1a78109 Fix <rdar://problem/6505139> [clang on growl]: need to allow unnamed selectors as the first argument by Steve Naroff · 16 years ago
  30. 590fe48 Fix <rdar://problem/6243503> [sema] @throw; accepted outside catch block. by Steve Naroff · 16 years ago
  31. 677f401 Fix <rdar://problem/6206858> [sema] type check @throw statements. by Steve Naroff · 16 years ago
  32. a60c62e Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 16 years ago
  33. ebfa23a Make one expected-diag directive match exactly one actual diagnostic. by Sebastian Redl · 16 years ago
  34. afa046e Add sub-testcase where we process Cocoa.h using --disable-free (i.e., test the usage of the BumpPtrAllocator in ASTContext). by Ted Kremenek · 16 years ago
  35. cb3beaf Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate' as different kind of symbol. by Steve Naroff · 16 years ago
  36. de04cb4 Fix <rdar://problem/6512717> by correctly reading the right offset in the token data in PTHLexer::getSourceLocation(). by Ted Kremenek · 16 years ago
  37. 6ec8955 Type of property and its ivar is more restrictive that rules for assignment. by Fariborz Jahanian · 16 years ago
  38. 46fe06e Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 16 years ago
  39. 6b0ed6f Patch to allow @dynamic synthesis of property in a category, by Fariborz Jahanian · 16 years ago
  40. 7b4695f Diagnose when method parameter is an object. by Fariborz Jahanian · 16 years ago
  41. 44da7a1 Don't ICE (issue diagnostics) when receiver is a non-objc type. by Fariborz Jahanian · 16 years ago
  42. de93967 Don't ICE on user redeclaration of objc's built-in types. by Fariborz Jahanian · 16 years ago
  43. 82f5496 Implemenent objective-c's NSObject attribute as a way of ddeclaraing c-type by Fariborz Jahanian · 16 years ago
  44. b748fc5 Implement support for anonymous structs and unions in C. Both C and by Douglas Gregor · 16 years ago
  45. f96ee9e Patch to supprt case of readonly property being by Fariborz Jahanian · 16 years ago
  46. 5eca99e Properly set the scope of non-fields declared within a struct, union, by Douglas Gregor · 16 years ago
  47. e008c14 Explicit declaration of property setters over-ride by Fariborz Jahanian · 16 years ago
  48. faca5e2 This patch removes mergeProperties and does the property lookup by Fariborz Jahanian · 16 years ago
  49. 0a576d5 Fix crash on null deference when searching for readwrite properties in by Daniel Dunbar · 16 years ago
  50. 45f7a98 Re-enable PTH testing for Cocoa.h and Carbon.h (and include testing for Objective-C++). by Ted Kremenek · 16 years ago
  51. f6f18b2 Temporarily revert r61956 and r61957 (PTH tests failing). by Ted Kremenek · 16 years ago
  52. 9dcfd51 Enhance -fsyntax-only test of Cocoa.h to also include testing for PTH. by Ted Kremenek · 16 years ago
  53. 4fb265c Place warning about 'readonly' property attributes which by Fariborz Jahanian · 16 years ago
  54. db568cf Unify the code for defining tags in C and C++, so that we always by Douglas Gregor · 16 years ago
  55. a04fcb6 Don't ICE when messaging on 'super' receiver when class by Fariborz Jahanian · 16 years ago
  56. 7d2de55 add RUN line by Nuno Lopes · 16 years ago
  57. 80402cf Add some block-pointer conversions in C++ by Douglas Gregor · 16 years ago
  58. 42d0bf9 Patch to remove bogus warning in case of @dynamic by Fariborz Jahanian · 16 years ago
  59. 96095fc Fix for PR3234 by Anders Carlsson · 16 years ago
  60. 30fb1da Fix http://llvm.org/bugs/show_bug.cgi?id=3189. by Steve Naroff · 16 years ago
  61. ca328c3 Consolidated property check into property-typecheck-1.m file. by Fariborz Jahanian · 16 years ago
  62. f188f2f Fix <rdar://problem/6450964> clang on xcode: Assertion failed: (RecordForDecl && "lookupFieldDeclForIvar no storage for class"). by Steve Naroff · 16 years ago
  63. 8f9b1b2 Semantics of @protocol attributes. by Fariborz Jahanian · 16 years ago
  64. f8bfa0c Patch to check for ObjC's property type. by Fariborz Jahanian · 16 years ago
  65. 0c06709 Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
  66. 28ceff7 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  67. da32905 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  68. 09e1b9e Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
  69. 0b7716c Prevent bogus warning on unimplemented setter/getter when user by Fariborz Jahanian · 16 years ago
  70. bc6e654 Add testcase for commit r60781. by Steve Naroff · 16 years ago
  71. af15180 ObjCInterfaceDecl::lookupInstanceMethod() needs to look through a categories protocols. by Steve Naroff · 16 years ago
  72. f189290 Changed 'readonly' 'retain/copy' diagnostics into by Fariborz Jahanian · 16 years ago
  73. 965242e Since we do not allow a readonly property to be 'copy'retain', we by Fariborz Jahanian · 16 years ago
  74. acad6d1 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
  75. 88a6293 Improve error reporting of property and setter/getter type mimatches. by Fariborz Jahanian · 16 years ago
  76. 7ad911c Patch to diagnose a variety of misuse of property by Fariborz Jahanian · 16 years ago
  77. 6834228 This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  78. 5e1a68b Fixed a test case. Added a test case showing property setter's by Fariborz Jahanian · 16 years ago
  79. 4e0f645 (instance/class) Method type checking between class and its implementation. by Fariborz Jahanian · 16 years ago
  80. 64c4631 Patch for diagnosing type mismatch between by Fariborz Jahanian · 16 years ago
  81. d7bc88b instead of forcing blocks on by default, make them default to off, but let by Chris Lattner · 16 years ago
  82. 3d7aa25 Output better diagnostics for continuation class by Fariborz Jahanian · 16 years ago
  83. c123566 Removed a FIXME. Added a test case for anonymous category. by Fariborz Jahanian · 16 years ago
  84. bcda0b4 Set default property attributes on each property. by Fariborz Jahanian · 16 years ago
  85. 5183f9e Fix a minor typo in the handling of the conditional operator for Objective-C interface pointers by Douglas Gregor · 16 years ago
  86. 48b1a13 Patch to allow over-riding of readonly property to by Fariborz Jahanian · 16 years ago
  87. 4b871b3 Patch to remove bogus waring when a property declaration by Fariborz Jahanian · 16 years ago
  88. 4bfd223 Change a whole lot of diagnostics to take QualType's directly by Chris Lattner · 16 years ago
  89. 271d4c2 Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  90. d120b9e Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 16 years ago
  91. cc884cc Rewrite FindDiagnostics to be more strict about the formatting of the by Chris Lattner · 16 years ago
  92. ef2a3c6 convert some more warnings to NOTEs. by Chris Lattner · 16 years ago
  93. b13cb56 remove warn_previous_declaration by Chris Lattner · 16 years ago
  94. 921342c make the 'to match this' diagnostic a note. by Chris Lattner · 16 years ago
  95. 1336cab Make all the 'redefinition' diagnostics more consistent, and make the by Chris Lattner · 16 years ago
  96. 5b25065 make some objc redefinition warnings more consistent: call definitions by Chris Lattner · 16 years ago
  97. de1bd98 Tweak duplicate category diagnostic to work like the duplicate protocol diagnostic. by Chris Lattner · 16 years ago
  98. b175342 Convert IdentifierInfo's to be printed the same as DeclarationNames by Chris Lattner · 16 years ago
  99. c05da42 Support for implicit property assignment. Error assigning to by Fariborz Jahanian · 16 years ago
  100. a82663a And a test case for my last patch. by Fariborz Jahanian · 16 years ago