1. cc2b653 Remove DiagnosticConsumer::clone(), a bad idea that is now unused. by Douglas Gregor · 11 years ago
  2. dd08a0c [Preprocessor] For the MacroExpands preprocessor callback, also pass the MacroArgs object that provides information about by Argyrios Kyrtzidis · 11 years ago
  3. f4d0239 Point diagnostics that complain about a use of a selector in an objc message, to the selector location. by Argyrios Kyrtzidis · 11 years ago
  4. 8ef8f16 ARCMigrate/Transforms.h: Remove \arg in comment. [-Wdocumentation] by NAKAMURA Takumi · 11 years ago
  5. e40e496 [arcmt] Copy the diagnostics so we don't have to worry about invaliding iterators from the diagnostic list. by Argyrios Kyrtzidis · 11 years ago
  6. 531db82 Add a hasExternalLinkage helper. No functionality change. by Rafael Espindola · 11 years ago
  7. c515978 [preprocessor] Use MacroDirective in the preprocessor callbacks to make available the by Argyrios Kyrtzidis · 11 years ago
  8. dc84cd5 Include llvm::Optional in clang/Basic/LLVM.h by David Blaikie · 11 years ago
  9. 39e6ab4 Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 11 years ago
  10. 33ace06 [arcmt] Make sure the function has an associated parameter for the argument by Argyrios Kyrtzidis · 11 years ago
  11. ed351e6 [arcmt] Make sure the objc migrators work fine when used with a PCH. by Argyrios Kyrtzidis · 11 years ago
  12. b1ba0ef Re-sort all the headers. Lots of regressions have crept in here. by Chandler Carruth · 11 years ago
  13. a44b970 [objcmt] Rewrite a NSDictionary dictionaryWithObjects:forKeys: to a dictionary literal by Argyrios Kyrtzidis · 12 years ago
  14. d329724 Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 12 years ago
  15. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  16. 4ce831c [arcmt] Follow-up for r171484; make sure when adding brackets enclosing case statements, by Argyrios Kyrtzidis · 12 years ago
  17. 34b3366 Update CMakeLists.txt by Ted Kremenek · 12 years ago
  18. 463b383 Add file added in r171484 to CMakelists.txt. by Filipe Cabecinhas · 12 years ago
  19. 20bcd4e [arcmt] Allow removing an -autorelease of a variable initialized in the previous statement. by Argyrios Kyrtzidis · 12 years ago
  20. ea2224d [arcmt] Adds brackets in case statements that "contain" initialization of retaining by Argyrios Kyrtzidis · 12 years ago
  21. af1c08f [arcmt] Don't error if an autoreleased variable is returned after the -autorelease. by Argyrios Kyrtzidis · 12 years ago
  22. 5d2faa4 [arcmt] Rewrite uses of Block_copy/Block_release macros. by Argyrios Kyrtzidis · 12 years ago
  23. 489feee [arcmt] When capturing ARC errors, have a sanity check to make sure by Argyrios Kyrtzidis · 12 years ago
  24. 135aa60 [objc] For the ARC error that is emitted when a synthesized property implementation by Argyrios Kyrtzidis · 12 years ago
  25. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  26. 37ed127 Refactor recording the preprocessor conditional directive regions out of by Argyrios Kyrtzidis · 12 years ago
  27. 9852f58 Don't include Type.h in DeclarationName.h. by Benjamin Kramer · 12 years ago
  28. 2fa67ef Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't pull in all the generated Attr code. by Benjamin Kramer · 12 years ago
  29. accaf19 s/tranform/transform/ by Benjamin Kramer · 12 years ago
  30. 377e5c1 Remove old driver code to grab the iOS simulator version from the -D option. by Bob Wilson · 12 years ago
  31. 14e71f0 Move PreprocessorOptions into the Lex library, and make it intrusively by Douglas Gregor · 12 years ago
  32. dc7b641 Use a .def file for most of the diagnostic options. by Douglas Gregor · 12 years ago
  33. 02c23eb Make DiagnosticOptions intrusively reference-counted, and make sure by Douglas Gregor · 12 years ago
  34. 305c613 Split library clangRewrite into clangRewriteCore and clangRewriteFrontend. by Ted Kremenek · 12 years ago
  35. e4d90e1 Fixed invalid iterators. Since the iterator is invalidated after the erase() call, we need to replace it with the new one returned. This was triggering an assert under MSVC 2012 and making all the ARCMT/ tests fail. by Joao Matos · 12 years ago
  36. a8eaf00 Fix undefined behavior: member function calls where 'this' is a null pointer. by Richard Smith · 12 years ago
  37. 0a7dd78 Screw around with ObjCRuntime some more, changing the by John McCall · 12 years ago
  38. 7c304f5 Update VerifyDiagnosticConsumer to only get directives during parsing. by Jordan Rose · 12 years ago
  39. 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 12 years ago
  40. 866abce clang/lib: [CMake] Reformat, alphabetize lists. by NAKAMURA Takumi · 12 years ago
  41. bed28ac Fix a typo (the the => the) by Sylvestre Ledru · 12 years ago
  42. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  43. 471c8b4 Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. by Benjamin Kramer · 12 years ago
  44. 478851c Drop the ASTContext.h include from Stmt.h and fix up transitive users. by Benjamin Kramer · 12 years ago
  45. b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
  46. 1912982 [arcmt] by Argyrios Kyrtzidis · 12 years ago
  47. ffe76dd [arcmt] When migrating to ARC disable -Werror so as to only block migration by Argyrios Kyrtzidis · 12 years ago
  48. aa0cd85 Structured comment parsing, first step. by Dmitri Gribenko · 12 years ago
  49. d880b3a Insert a space if necessary when suggesting CFBridgingRetain/Release. by Jordan Rose · 12 years ago
  50. 76a5245 [arcmt] At an unbridged cast error, if we're returning a load-of-ivar from a +0 method, by Argyrios Kyrtzidis · 12 years ago
  51. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  52. 1ada2a6 Remove the last dead private member in clang. by Benjamin Kramer · 12 years ago
  53. facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
  54. 684190b [arcmt] Use CFBridgingRetain/CFBridgingRelease instead of __bridge_retained/__bridge_transfer by Argyrios Kyrtzidis · 12 years ago
  55. 013a254 [objcmt] Warn when modern objc migrator does not convert a NSNumber message because it requires a cast. by Argyrios Kyrtzidis · 12 years ago
  56. 1b8fbd3 [arcmt] Remove an unused -autorelease, without failing with error, for this by Argyrios Kyrtzidis · 12 years ago
  57. 5a42a02 [arcmt] Revert r156999 "Remove the "it is not safe to remove an unused 'autorelease' message" ARC by Argyrios Kyrtzidis · 12 years ago
  58. b6a1b10 [arcmt] Remove the "it is not safe to remove an unused 'autorelease' message" ARC by Argyrios Kyrtzidis · 12 years ago
  59. 95109d2 Fix use of uninitialized variable caught by GCC's -Wmaybe-uninitialized. by David Blaikie · 12 years ago
  60. bd4fa45 Remove ref/value inconsistency in redecl_iterator. by David Blaikie · 12 years ago
  61. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  62. d76e1cd [arcmt] When fixing the "unassigned init call" ARC error, make sure by Argyrios Kyrtzidis · 12 years ago
  63. 0fd4a68 [arcmt] Fix a bug where a property in a class extension, that did not exist by Argyrios Kyrtzidis · 12 years ago
  64. 7e42392 Simplify some users of DenseMap::erase. by Benjamin Kramer · 12 years ago
  65. 44b8e46 Kill cocoa::deriveNamingConvention and cocoa::followsFundamentalRule. They are now just simple wrappers around method families, and method decls can cache method family lookups. Also, no one is using them right now. by Jordy Rose · 12 years ago
  66. 19ebac1 [arcmt] The hard-coded list of weak-incompatible classes is no longer necessary. by Argyrios Kyrtzidis · 12 years ago
  67. 2af504b [arcmt] iOS is always safe to use 'weak'. rdar://10950825 by Argyrios Kyrtzidis · 12 years ago
  68. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  69. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 12 years ago
  70. 30660a8 Add new code migrator support for migrating existing Objective-C code to use by Ted Kremenek · 12 years ago
  71. 2a27818 [arcmt] by Argyrios Kyrtzidis · 12 years ago
  72. b2c60b0 Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h. by Argyrios Kyrtzidis · 12 years ago
  73. d45d361 Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h" by Argyrios Kyrtzidis · 12 years ago
  74. 63787f0 [arcmt] GC migrator: don't try to remove redundant __strong, it does by Argyrios Kyrtzidis · 12 years ago
  75. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 12 years ago
  76. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 12 years ago
  77. 6f42b62 Basic: import OwningPtr<> into clang namespace by Dylan Noblesmith · 12 years ago
  78. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 12 years ago
  79. 9c7aed3 arc migrator: twik previous patch to exclude user provided by Fariborz Jahanian · 12 years ago
  80. 2908ffb arc migrator: Do not attempt to migrate to bridge casts which by Fariborz Jahanian · 12 years ago
  81. bbdfad5 objc-arc: introduce -no-finalize-removal which in gc mode, by Fariborz Jahanian · 12 years ago
  82. 26f0e4e arc migrator: Added an option to the migrator unused yet. by Fariborz Jahanian · 12 years ago
  83. b5c6bab arc migrator: Provide infrastructure to add options by Fariborz Jahanian · 12 years ago
  84. 2f72ec9 arg migrator: change all "assign" of object properties by Fariborz Jahanian · 12 years ago
  85. 86f9601 arc migrator: replace "retain" attribute with "strong" by Fariborz Jahanian · 12 years ago
  86. 1f6b2b5 Extract the (InputKind, std::string) pair used to describe inputs to by Douglas Gregor · 12 years ago
  87. 69bda4c For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macro by Argyrios Kyrtzidis · 12 years ago
  88. 8d2a701 Remove unused variables. by Rafael Espindola · 13 years ago
  89. 7723fec Keep track of all declarations of an Objective-C class (both forward by Douglas Gregor · 13 years ago
  90. 6da4274 [arcmt] Integrate GC __weak into property attributes even when we don't have by Argyrios Kyrtzidis · 13 years ago
  91. 6d7d16d [arcmt] Don't add __weak if there is already a GC __weak and make sure to clear by Argyrios Kyrtzidis · 13 years ago
  92. 8a0c5c2 Refine placement of LangOptions object in CompilerInvocation by adding a new baseclass CompilerInvocationBase with a custom copy constructor. This ensures that whenever the CompilerInvocation object's copy constructor is used we always clone the LangOptions object. by Ted Kremenek · 13 years ago
  93. d3b74d9 Make 'LangOptions' in CompilerInvocation a heap-allocated, reference counted object. I discovered that llvm::RefCountedBase<T> has by Ted Kremenek · 13 years ago
  94. 8b08eb3 [arcmt] Take into account that all properties are strong-by-default now and fix the test. by Argyrios Kyrtzidis · 13 years ago
  95. af9b5e9 [arcmt] Now that readonly properties are strong-by-default, do not add redundant 'strong'. by Argyrios Kyrtzidis · 13 years ago
  96. ae7c25d [arcmt] Now that properties are strong by default, avoid adding redundant '(strong)' by Argyrios Kyrtzidis · 13 years ago
  97. 263d667 [arcmt] NSViewController does not support weak. by Argyrios Kyrtzidis · 13 years ago
  98. 7cfd7fe [arcmt] When we already removed a __weak, don't try to change it to __unsafe_unretained by Argyrios Kyrtzidis · 13 years ago
  99. a33849b [arcmt] Fix handling NSMakeCollectable inside an objc method. by Argyrios Kyrtzidis · 13 years ago
  100. b0e1e12 [arcmt] In GC, handle (assign) @properties. by Argyrios Kyrtzidis · 13 years ago