1. 2b61039 ObjectiveC. Method implementations should only check for by Fariborz Jahanian · 11 years ago
  2. 4e7f00c ObjectiveC: under -Wunused-property-ivar warn if property's by Fariborz Jahanian · 11 years ago
  3. 7dcff5b Reduce double set lookups by using the result of insert. by Benjamin Kramer · 11 years ago
  4. a924f84 ObjectiveC: Handle the case of qualifying protocols by Fariborz Jahanian · 11 years ago
  5. 2330df4 Revert my patch in r191155 to allow forward by Fariborz Jahanian · 11 years ago
  6. 4424239 ObjectiveC: ObjC declarations, including forward class by Fariborz Jahanian · 11 years ago
  7. 1806239 Cleanup of OpaquePtr. No functionality changes. by Serge Pavlov · 11 years ago
  8. 2d67097 Refactor all diagnosing of TypoCorrections through a common function, in by Richard Smith · 11 years ago
  9. 41594c5 ObjectiveC [Sema]. This patch makes sure that all inherited by Fariborz Jahanian · 11 years ago
  10. e7205c0 Omit llvm:: before SmallVector and SmallVectorImpl. We have using directive in include/clang/Basic/LLVM.h. by Robert Wilhelm · 11 years ago
  11. 0111e4d Even more code conformance. by Robert Wilhelm · 11 years ago
  12. 80f8aca More code conformance. by Fariborz Jahanian · 11 years ago
  13. a3c6246 This patch removes unused parameter allProperties and converts remaining by Fariborz Jahanian · 11 years ago
  14. 38b3bd8 Objective-C: merge objc_requires_super attribute of by Fariborz Jahanian · 11 years ago
  15. 4549d7f ArrayRef'ize Sema::FinalizeDeclaratorGroup, Sema::BuildDeclaratorGroup and by Rafael Espindola · 11 years ago
  16. 4cb3d90 Remove some useless declarations (found by scan-build) by Sylvestre Ledru · 11 years ago
  17. 3b20f58 ObjectiveC: diagnose duplicate declaration of by Fariborz Jahanian · 11 years ago
  18. 7348454 Don't use unnamed local enums as template arguments. Fixes -Werror bootstrap. by Joerg Sonnenberger · 11 years ago
  19. 8c0501c [Sema] Call CheckParmForFunctionDef on ObjC method parameters by Reid Kleckner · 11 years ago
  20. 8a52dce Delete dead code. by Eli Friedman · 11 years ago
  21. 104f96b Delete dead code. by Eli Friedman · 11 years ago
  22. fc46be9 When building a module, keep *all* declared methods in the global method pool. by Douglas Gregor · 11 years ago
  23. e7e8fca When declaring an ObjC interface decl with a @compatibility_alias alias name, change the class name to the "real" one. by Argyrios Kyrtzidis · 11 years ago
  24. cd9c9b5 Objective-C: Fixes a typo correction bug where a by Fariborz Jahanian · 11 years ago
  25. 419245e Objective-C [qoi]: privide typo correction for selectors by Fariborz Jahanian · 11 years ago
  26. d395e34 Objective-C [qoi]: Provide fixit hint when message with typo by Fariborz Jahanian · 11 years ago
  27. ddb5a39 Unify return type checking for functions and ObjC methods. Move all the by Eli Friedman · 11 years ago
  28. 4fe9644 Don't create a StringRef from a temporary string. by Richard Trieu · 11 years ago
  29. 9464a08 Objective-C: Provide fixit with suggested spelling correction by Fariborz Jahanian · 11 years ago
  30. 639aa52 fixes a comment in my last patch. by Fariborz Jahanian · 11 years ago
  31. f98c688 Objective-C: Implements gcc's -Wselector option by Fariborz Jahanian · 11 years ago
  32. df08c4b Fix potential infinite loop when iterating over redeclarations of an ObjMethodDecl, resulting from invalid code. by Argyrios Kyrtzidis · 11 years ago
  33. b8ed071 Objective-C arc: Diagnose when user attempts to by Fariborz Jahanian · 11 years ago
  34. 7247c88 Use only explicit bool conversion operator by David Blaikie · 11 years ago
  35. fbff0c4 Objective-C error recovery. This patch makes a quick by Fariborz Jahanian · 11 years ago
  36. 634c563 Keep track of an @implementation's super class name location, if one was provided. by Argyrios Kyrtzidis · 11 years ago
  37. ab3d509 Fix an assertion hit in Sema::CheckObjCMethodOverrides. by Argyrios Kyrtzidis · 11 years ago
  38. c775b1a Objective-C: When reporting on missing property accessor implementation in by Fariborz Jahanian · 11 years ago
  39. e7a7772 Use the extra info in global method pool to speed up looking for ObjC overridden methods. by Argyrios Kyrtzidis · 11 years ago
  40. 2e3d8c0 Enhance the ObjC global method pool to record whether there were 0, 1, or >= 2 methods (with a particular selector) inside categories. by Argyrios Kyrtzidis · 11 years ago
  41. ec64244 Parsing support for thread_local and _Thread_local. We give them the same by Richard Smith · 11 years ago
  42. 3c9a024 Objective-C: This patch fixes a none-issuance of warning by Fariborz Jahanian · 11 years ago
  43. 740991b Objective-C: Issue deprecated warning when using a by Fariborz Jahanian · 12 years ago
  44. b846381 Be sure to check ARC conventions on the implicit method declarations by John McCall · 12 years ago
  45. d2615cc Add 178663 back. by Rafael Espindola · 12 years ago
  46. 4f8a3eb Revert 178663. by Rafael Espindola · 12 years ago
  47. 8f187f6 Don't compute a patched/semantic storage class. by Rafael Espindola · 12 years ago
  48. 04593d0 When looking for overridden ObjC methods, don't ignore 'hidden' ones. by Argyrios Kyrtzidis · 12 years ago
  49. 8b43d2b Split "incomplete implementation" warnings for ObjC into separate warnings. by Ted Kremenek · 12 years ago
  50. 7cca821 Add a clarifying note when a return statement is rejected because by John McCall · 12 years ago
  51. c7f8116 Add missing diagnostic for a nested-name-specifier on a free-standing type definition. Bump some related diagnostics from warning to extension in C++, since they're errors there. Add some missing checks for function specifiers on non-function declarations. by Richard Smith · 12 years ago
  52. 41f3f3a Silence a number of static analyzer warnings with assertions and such. by Jordan Rose · 12 years ago
  53. 7666b03 Retain all hidden methods in the global method pool, because they may become visible <rdar://problem/13172858>. by Douglas Gregor · 12 years ago
  54. b892d70 Eliminate Sema::CompareProperties(), which was walking over a pile of by Douglas Gregor · 12 years ago
  55. aabd094 Eliminate the oddly-named Sema::ComparePropertiesInBaseAndSuper, which by Douglas Gregor · 12 years ago
  56. f373c5d When checking the parameter types of an Objective-C method, don't by Douglas Gregor · 12 years ago
  57. 0f9b9f3 Treat hidden Objective-C protocol definitions as if they were by Douglas Gregor · 12 years ago
  58. d329724 Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 12 years ago
  59. f0e0004 Teach global selector lookup to ignore hidden methods, which occur by Douglas Gregor · 12 years ago
  60. f4d918f When checking availability attributes for consistency between an by Douglas Gregor · 12 years ago
  61. 32b94be objective-C: when searching for declarations in protocol by Fariborz Jahanian · 12 years ago
  62. 86f6cf6 Don't complain about incomplete implementations for methods that are by Douglas Gregor · 12 years ago
  63. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  64. 5fa6676 objective-C: Do not issue deprecated warning about implementation by Fariborz Jahanian · 12 years ago
  65. 6a6bb28 Objective-C: check that when a category method is being implemented, by Fariborz Jahanian · 12 years ago
  66. 535a5d0 Allow objc_requires_super to be used to check class methods as well. by Jordan Rose · 12 years ago
  67. 0ec56b7 From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources. by Axel Naumann · 12 years ago
  68. 1e4691b Rename ObjCMethodDecl::isSynthesized to isPropertyAccessor. by Jordan Rose · 12 years ago
  69. 9fb6f79 remove duplicate code. by Fariborz Jahanian · 12 years ago
  70. a1a32f7 Move back the stuff about missing ownership attribute warning by Fariborz Jahanian · 12 years ago
  71. ca5c4c9 Move no explicit ownership warning to SemaType.cpp. // rdar://12280826 by Fariborz Jahanian · 12 years ago
  72. 0002479 objective-C arc: don't issue no explicit ownership warning when by Fariborz Jahanian · 12 years ago
  73. 6f93860 More tweaking and test cases for call to super annotations. // rdar://6386358 by Fariborz Jahanian · 12 years ago
  74. 8410113 objective-C: introduce __attribute((objc_requires_super)) on method by Fariborz Jahanian · 12 years ago
  75. 31ba613 Dont cast away const needlessly. Found by gcc48 -Wcast-qual. by Roman Divacky · 12 years ago
  76. 918546c objective-C ARC: under -Wexplicit-ownership-type diagnose those by Fariborz Jahanian · 12 years ago
  77. 129a60b objective-C: Do not warn if align attribute on method by Fariborz Jahanian · 12 years ago
  78. 8c6cb46 objective-C: refactor/simplify parsing of delayed by Fariborz Jahanian · 12 years ago
  79. de01b7a PR13558: Fix typo 'compatiblity'. Thinking of the children. Apparently. by Richard Smith · 12 years ago
  80. 95aac15 Fix an assertion failure instantiating a constexpr function from within a -dealloc method. PR13401. by Eli Friedman · 12 years ago
  81. 1b0a13e objective-c arc: ARC IRGen correctly assumes result by Fariborz Jahanian · 12 years ago
  82. abd56c8 Attaching comments to declarations during parsing: handle more Objective-C declarations. by Dmitri Gribenko · 12 years ago
  83. a5ef44f Enable comment parsing and semantic analysis to emit diagnostics. A few by Dmitri Gribenko · 12 years ago
  84. c4133a4 objective-c: don't involve properties when checking by Fariborz Jahanian · 12 years ago
  85. 2e2c7a4 Remove a redundant assignment to the FDecl variable from *inside* it's by Chandler Carruth · 12 years ago
  86. 6c89eaf objective-c: just as we have done for method definitions, by Fariborz Jahanian · 12 years ago
  87. 260611a Restructure how the driver communicates information about the by John McCall · 12 years ago
  88. 1dfbd92 Still more Doxygen documentation fixes: by James Dennett · 12 years ago
  89. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  90. 811bfcd Use the SelectorSet typedef more widely throughout Sema. by Benjamin Kramer · 12 years ago
  91. 0a4a23a A selector match between two Objective-C methods does *not* guarantee by Douglas Gregor · 12 years ago
  92. dd87224 In the override search for Objective-C methods, protect against ASTs that have NULL interfaces behind a category, which can happen in invalid code. Fixes <rdar://problem/11478173>, a recent regression by Douglas Gregor · 12 years ago
  93. e15db6f [AST/libclang] Speed up clang_getOverriddenCursors() considerably by reserving a bit by Argyrios Kyrtzidis · 12 years ago
  94. d10099e Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() by Douglas Gregor · 12 years ago
  95. c968334 Do not keep track of the set of visited Objective-C containers when by Douglas Gregor · 12 years ago
  96. ff310c7 Eliminate Sema::CompareMethodParamsInBaseAndSuper() entirely, by by Douglas Gregor · 12 years ago
  97. 8722ae8 The semantic checking that verifies whether an Objective-C method by Douglas Gregor · 12 years ago
  98. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  99. b2f6820 Added a new attribute, objc_root_class, which informs the compiler when a root class is intentionally declared. by Patrick Beard · 13 years ago
  100. bf393be objective-c: Don't warn when a category does not implement a method by Fariborz Jahanian · 13 years ago