1. d36150d ObjC migrator: finding conforming protocol candidates for each class. wip. by Fariborz Jahanian · 12 years ago
  2. d6d31ac Add 'static' and 'const' qualifiers to some arrays of strings. by Craig Topper · 12 years ago
  3. ab277d6 Simplify getTypeInfoImpl handling of 'non-canonical unless dependent' types. by David Blaikie · 12 years ago
  4. c682ef5 fixes a typo caught by Jordan. by Fariborz Jahanian · 12 years ago
  5. 88890e7 Objective-C: Produce gcc compatible encoding of by Fariborz Jahanian · 12 years ago
  6. 3b7d46c More local mangling fixes. by Eli Friedman · 12 years ago
  7. 7e346a8 Fix mangling for block literals. by Eli Friedman · 12 years ago
  8. b998bff Delete dead code. by Eli Friedman · 12 years ago
  9. 2782dac Rewrite record layout for ms_struct structs. by Eli Friedman · 12 years ago
  10. 3577995 Don't try to get the layout of an invalid decl in getDeclAlign. by Matt Beaumont-Gay · 12 years ago
  11. 8a36502 [AST] Introduce a new DecayedType sugar node by Reid Kleckner · 12 years ago
  12. 5b0b46f Add an assert() suggested by Richard. by Nico Weber · 12 years ago
  13. 95296d4 Fix a crash with __flaot128 noticed by Eli. by Nico Weber · 12 years ago
  14. e1687c5 Lazily provide a __float128 dummy type in -std=gnu++11 mode. by Nico Weber · 12 years ago
  15. 2ab0ac5 [AST] Don't include RecursiveASTVisitor.h in ASTContext.h by Reid Kleckner · 12 years ago
  16. 896b32f Use FPT::getArgTypes() instead of manually building ArrayRefs by Reid Kleckner · 12 years ago
  17. 17aeeeb Revert "[Sema] Make FunctionType's TSI use unadjusted argument types" by Reid Kleckner · 12 years ago
  18. 4c124ff [Sema] Make FunctionType's TSI use unadjusted argument types by Reid Kleckner · 12 years ago
  19. e6c0144 Model temporary lifetime-extension explicitly in the AST. Use this model to by Richard Smith · 13 years ago
  20. f0dc11a Objective-C encoding. Fixes up encodeing for by Fariborz Jahanian · 13 years ago
  21. a732899 Fix memory leak for APValues that do memory allocation. by Manuel Klimek · 13 years ago
  22. ce2168f Remove unused field. by Rafael Espindola · 13 years ago
  23. 615de76 Patch to issue error when target of MacOS and iOS by Fariborz Jahanian · 13 years ago
  24. eee0a3a Fix a crash when we were trying to compute the linkage too early. by Rafael Espindola · 13 years ago
  25. b39b9d5 In -ast-dump, only dump comments when dumping the actual Decl to which they by Richard Smith · 13 years ago
  26. c750907 Add static_cast to assertion to silence sign/unsigned comparison warning. by Richard Trieu · 13 years ago
  27. 04d2d94 When computing the size of large arrays, use char units instead of bits. by Richard Trieu · 13 years ago
  28. 096f7c1 Objective-C error recovery. This patch makes a quick by Fariborz Jahanian · 13 years ago
  29. 27699c8 Fix a gcc warning. by Rafael Espindola · 13 years ago
  30. 3ae0005 Cleanup handling of UniqueExternalLinkage. by Rafael Espindola · 13 years ago
  31. 1fa5d64 C++1y deduced return types: when we deduce a return type for a function which by Richard Smith · 13 years ago
  32. 0d81e01 Add support for __wchar_t in -fms-extensions mode. by Hans Wennborg · 13 years ago
  33. 4e8626f Objective-C: Correctly encode 'retain' and 'copy' for readonly properties. by Nico Weber · 13 years ago
  34. d25db7e Grab-bag of bit-field fixes: by John McCall · 13 years ago
  35. 4744507 by Ulrich Weigand · 13 years ago
  36. fa80642 by Ulrich Weigand · 13 years ago
  37. d428ff4 Reverting r181004 since it has broken test/Sema/wchar.c. by Aaron Ballman · 13 years ago
  38. 2a7d481 Implement most of N3638 (return type deduction for normal functions). by Richard Smith · 13 years ago
  39. cadd77c Support __wchar_t in -fms-extensions and -fms-compatibility modes. by Hans Wennborg · 13 years ago
  40. 6384fbb [document parsing]: support c++11 type aliases by Fariborz Jahanian · 13 years ago
  41. 27d807c Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there by Richard Smith · 13 years ago
  42. 5a2e4a2 documenttion parsing. Provide a c-index test by Fariborz Jahanian · 13 years ago
  43. e970c1b document parsing. When a sub-class (c++ Objective-C) missing by Fariborz Jahanian · 13 years ago
  44. 74aeef5 Implement C++1y decltype(auto). by Richard Smith · 13 years ago
  45. 799a403 [document parsing]: When tag declaration (but not definition!) by Fariborz Jahanian · 13 years ago
  46. c8e7008 In ASTContext::getOverriddenMethods, call overridden_methods_begin/overridden_methods_end directly. by Argyrios Kyrtzidis · 13 years ago
  47. fe7a59d Revert "Speed-up ObjCMethodDecl::getOverriddenMethods()." by Argyrios Kyrtzidis · 13 years ago
  48. 53a6558 Speed-up ObjCMethodDecl::getOverriddenMethods(). by Argyrios Kyrtzidis · 13 years ago
  49. a7d16ce Add an option to parse all comments as documentation comments by Dmitri Gribenko · 13 years ago
  50. 5205a8c Don't eagerly deserialize every templated function (and every static data by Richard Smith · 13 years ago
  51. 3a52abf [ms-cxxabi] Correctly compute the size of member pointers by Reid Kleckner · 13 years ago
  52. 433c2e6 Further weaken block conversion rules to permit blocks with by John McCall · 13 years ago
  53. c8541f2 Revert "Remove a pointless assertion." by Bob Wilson · 13 years ago
  54. 966b331 Remove a pointless assertion. by Nico Weber · 13 years ago
  55. b3f4b97 Remove a bogus assert so we don't crash in by Rafael Espindola · 13 years ago
  56. 5c38272 ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. by Jordan Rose · 13 years ago
  57. a8ec7eb Promote atomic type sizes up to a power of two, capped by by John McCall · 13 years ago
  58. 9170e91 Streamify getNameForDiagnostic and remove the string versions of PrintTemplateArgumentList. by Benjamin Kramer · 13 years ago
  59. acf2e78 Comment parsing: add CommentOptions to allow specifying custom comment block commands by Dmitri Gribenko · 13 years ago
  60. 05785d1 Include llvm::Optional in clang/Basic/LLVM.h by David Blaikie · 13 years ago
  61. 6adc78e Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 13 years ago
  62. d4c1a20 objective-C: Fixes a compiler crash when encoding by Fariborz Jahanian · 13 years ago
  63. 6105419 Add OpenCL samplers as Clang builtin types and check sampler related restrictions. by Guy Benyei · 13 years ago
  64. 37527c2 Constify ASTContext::getObjContainingInterface by Dmitri Gribenko · 13 years ago
  65. 9bb857a Add support for AArch64 target. by Tim Northover · 13 years ago
  66. 01b0651 Comment parsing: attach any tag type's documentation to its typedef if latter by Dmitri Gribenko · 13 years ago
  67. 69b664d Revert r173586 (and r173587) , "Attach any tag type's documentation to its typedef if" by NAKAMURA Takumi · 13 years ago
  68. 0ea5183 Fix comment. by Fariborz Jahanian · 13 years ago
  69. 6522ad6 Attach any tag type's documentation to its typedef if by Fariborz Jahanian · 13 years ago
  70. f11ceb6 Added ASTContext methods getIntPtrType and getUIntPtrType. by Enea Zaffanella · 13 years ago
  71. 66024d0 simplify code by removing excessive bracing. by Fariborz Jahanian · 13 years ago
  72. 40abf34 Attach enum's documentation to its typedef if by Fariborz Jahanian · 13 years ago
  73. 6bd2a89 The standard ARM C++ ABI dictates that inline functions are by John McCall · 13 years ago
  74. 359b885 First pass at abstracting out a class for the target C++ ABI. by John McCall · 13 years ago
  75. dd7f456 Add a new LangOpt NativeHalfType. This option allows for native half/fp16 by Joey Gouly · 13 years ago
  76. 1b4fb3e Implement OpenCL event_t as Clang builtin type, including event_t related OpenCL restrictions (OpenCL 1.2 spec 6.9) by Guy Benyei · 13 years ago
  77. cd78037 In Objective-C ARC, completely ignore ownership qualifiers on the by Douglas Gregor · 13 years ago
  78. 048fbfa Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 13 years ago
  79. 19de561 Disable caching of visibility. by Rafael Espindola · 13 years ago
  80. 37494a1 comment parsing: when property accessors don't have comment by Fariborz Jahanian · 13 years ago
  81. 5a6a020 Suppress GCC -Wreturn warning. by David Blaikie · 13 years ago
  82. ef5ea1d Clear the LV cache when setting the instantiated from link. Fixes pr14835. by Rafael Espindola · 13 years ago
  83. cb6c867 Fix up various builtin declaration of objc_msgSend families by Fariborz Jahanian · 13 years ago
  84. 6525f96 Convert an if that never happens to an assert. by Rafael Espindola · 13 years ago
  85. 393a78d Robustify the @encode code and add support for _Atomic. by John McCall · 13 years ago
  86. d8a08ea Re-commit r170428 changes with Linux style file endings. by Guy Benyei · 13 years ago
  87. 11169dd Revert changes from r170428, as I accidentally changed the line endings of these files to Windows style. by Guy Benyei · 13 years ago
  88. b13abb9 Add OpenCL images as clang builtin types. by Guy Benyei · 13 years ago
  89. f762b72 objective-C blocks: Check for record type when deciding if by Fariborz Jahanian · 13 years ago
  90. 7808c6a Don't use dyn_cast on a Type* which might not be canonical. Fixes an extremely obscure record layout bug. by Richard Smith · 13 years ago
  91. 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
  92. ea70eb3 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 · 13 years ago
  93. 8778c28 Merge function types in C. by Rafael Espindola · 13 years ago
  94. 998f0a3 objective-C blocks: Make sure that identical logic is used by Fariborz Jahanian · 13 years ago
  95. 4e91899e Fix the definition of the vfork() builtin on Haiku. PR14378. by Eli Friedman · 13 years ago
  96. 0e3043b block extended signatur option. Change previous option by Fariborz Jahanian · 13 years ago
  97. 6745c3b Fix a trivial bool-related bug I spotted while skimming David Fang's by Eli Friedman · 13 years ago
  98. 64223e6 objective-C blocks: under cc1 flag -encode-extended-block-signature, by Fariborz Jahanian · 13 years ago
  99. a9d4464 objective-C blocks: Provide layout map for byref by Fariborz Jahanian · 13 years ago
  100. 095deba Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 13 years ago