1. 538bbe5 Patch to issue error when target of MacOS and iOS by Fariborz Jahanian · 11 years ago
  2. 5bbb058 Fix a crash when we were trying to compute the linkage too early. by Rafael Espindola · 11 years ago
  3. 0a74a4c In -ast-dump, only dump comments when dumping the actual Decl to which they by Richard Smith · 11 years ago
  4. 1069b73 Add static_cast to assertion to silence sign/unsigned comparison warning. by Richard Trieu · 11 years ago
  5. 910f17e When computing the size of large arrays, use char units instead of bits. by Richard Trieu · 11 years ago
  6. fbff0c4 Objective-C error recovery. This patch makes a quick by Fariborz Jahanian · 11 years ago
  7. 77b5025 Fix a gcc warning. by Rafael Espindola · 11 years ago
  8. 181e3ec Cleanup handling of UniqueExternalLinkage. by Rafael Espindola · 11 years ago
  9. 9dadfab C++1y deduced return types: when we deduce a return type for a function which by Richard Smith · 11 years ago
  10. 15f92ba Add support for __wchar_t in -fms-extensions mode. by Hans Wennborg · 11 years ago
  11. d7ceab3 Objective-C: Correctly encode 'retain' and 'copy' for readonly properties. by Nico Weber · 11 years ago
  12. 993f43f Grab-bag of bit-field fixes: by John McCall · 11 years ago
  13. b840921 by Ulrich Weigand · 11 years ago
  14. 6b20351 by Ulrich Weigand · 11 years ago
  15. f973424 Reverting r181004 since it has broken test/Sema/wchar.c. by Aaron Ballman · 11 years ago
  16. 60e141e Implement most of N3638 (return type deduction for normal functions). by Richard Smith · 11 years ago
  17. 6f464bb Support __wchar_t in -fms-extensions and -fms-compatibility modes. by Hans Wennborg · 11 years ago
  18. 4857fdc [document parsing]: support c++11 type aliases by Fariborz Jahanian · 11 years ago
  19. dc7a4f5 Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there by Richard Smith · 11 years ago
  20. 91efca0 documenttion parsing. Provide a c-index test by Fariborz Jahanian · 11 years ago
  21. 622bb4a document parsing. When a sub-class (c++ Objective-C) missing by Fariborz Jahanian · 11 years ago
  22. a2c3646 Implement C++1y decltype(auto). by Richard Smith · 11 years ago
  23. 099ecfb [document parsing]: When tag declaration (but not definition!) by Fariborz Jahanian · 12 years ago
  24. 685d104 In ASTContext::getOverriddenMethods, call overridden_methods_begin/overridden_methods_end directly. by Argyrios Kyrtzidis · 12 years ago
  25. 77670f1 Revert "Speed-up ObjCMethodDecl::getOverriddenMethods()." by Argyrios Kyrtzidis · 12 years ago
  26. 175c8e2 Speed-up ObjCMethodDecl::getOverriddenMethods(). by Argyrios Kyrtzidis · 12 years ago
  27. 6fd7d30 Add an option to parse all comments as documentation comments by Dmitri Gribenko · 12 years ago
  28. f396ad9 Don't eagerly deserialize every templated function (and every static data by Richard Smith · 12 years ago
  29. 84e9ab4 [ms-cxxabi] Correctly compute the size of member pointers by Reid Kleckner · 12 years ago
  30. b9da713 Further weaken block conversion rules to permit blocks with by John McCall · 12 years ago
  31. c90cc93 Revert "Remove a pointless assertion." by Bob Wilson · 12 years ago
  32. 7e0786f Remove a pointless assertion. by Nico Weber · 12 years ago
  33. 6c18af2 Remove a bogus assert so we don't crash in by Rafael Espindola · 12 years ago
  34. bea522f ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. by Jordan Rose · 12 years ago
  35. 9eda3ab Promote atomic type sizes up to a power of two, capped by by John McCall · 12 years ago
  36. 5eada84 Streamify getNameForDiagnostic and remove the string versions of PrintTemplateArgumentList. by Benjamin Kramer · 12 years ago
  37. 6ebf091 Comment parsing: add CommentOptions to allow specifying custom comment block commands by Dmitri Gribenko · 12 years ago
  38. dc84cd5 Include llvm::Optional in clang/Basic/LLVM.h by David Blaikie · 12 years ago
  39. 39e6ab4 Replace TypeLoc llvm::cast support to be well-defined. by David Blaikie · 12 years ago
  40. 17c1a2e objective-C: Fixes a compiler crash when encoding by Fariborz Jahanian · 12 years ago
  41. 21f18c4 Add OpenCL samplers as Clang builtin types and check sampler related restrictions. by Guy Benyei · 12 years ago
  42. b35cc2d Constify ASTContext::getObjContainingInterface by Dmitri Gribenko · 12 years ago
  43. c264e16 Add support for AArch64 target. by Tim Northover · 12 years ago
  44. d1e5c0d Comment parsing: attach any tag type's documentation to its typedef if latter by Dmitri Gribenko · 12 years ago
  45. 06b5ea6 Revert r173586 (and r173587) , "Attach any tag type's documentation to its typedef if" by NAKAMURA Takumi · 12 years ago
  46. e3fac33 Fix comment. by Fariborz Jahanian · 12 years ago
  47. 87611cd Attach any tag type's documentation to its typedef if by Fariborz Jahanian · 12 years ago
  48. 9677eb8 Added ASTContext methods getIntPtrType and getUIntPtrType. by Enea Zaffanella · 12 years ago
  49. 23799e3 simplify code by removing excessive bracing. by Fariborz Jahanian · 12 years ago
  50. 41170b5 Attach enum's documentation to its typedef if by Fariborz Jahanian · 12 years ago
  51. d5617ee The standard ARM C++ ABI dictates that inline functions are by John McCall · 12 years ago
  52. b8b2c9d First pass at abstracting out a class for the target C++ ABI. by John McCall · 12 years ago
  53. 19dbb20 Add a new LangOpt NativeHalfType. This option allows for native half/fp16 by Joey Gouly · 12 years ago
  54. e6b9d80 Implement OpenCL event_t as Clang builtin type, including event_t related OpenCL restrictions (OpenCL 1.2 spec 6.9) by Guy Benyei · 12 years ago
  55. 02dd798 In Objective-C ARC, completely ignore ownership qualifiers on the by Douglas Gregor · 12 years ago
  56. d329724 Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 12 years ago
  57. 838dc59 Disable caching of visibility. by Rafael Espindola · 12 years ago
  58. c328d9c comment parsing: when property accessors don't have comment by Fariborz Jahanian · 12 years ago
  59. 719e53f Suppress GCC -Wreturn warning. by David Blaikie · 12 years ago
  60. ef3c694 Clear the LV cache when setting the instantiated from link. Fixes pr14835. by Rafael Espindola · 12 years ago
  61. f799213 Fix up various builtin declaration of objc_msgSend families by Fariborz Jahanian · 12 years ago
  62. 62a833e Convert an if that never happens to an assert. by Rafael Espindola · 12 years ago
  63. 3624e9e Robustify the @encode code and add support for _Atomic. by John McCall · 12 years ago
  64. b13621d Re-commit r170428 changes with Linux style file endings. by Guy Benyei · 12 years ago
  65. 7f92f2d Revert changes from r170428, as I accidentally changed the line endings of these files to Windows style. by Guy Benyei · 12 years ago
  66. 736104a Add OpenCL images as clang builtin types. by Guy Benyei · 12 years ago
  67. 34db84f objective-C blocks: Check for record type when deciding if by Fariborz Jahanian · 12 years ago
  68. d5e8394 Don't use dyn_cast on a Type* which might not be canonical. Fixes an extremely obscure record layout bug. by Richard Smith · 12 years ago
  69. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  70. 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
  71. 8b8a09e Merge function types in C. by Rafael Espindola · 12 years ago
  72. b15c898 objective-C blocks: Make sure that identical logic is used by Fariborz Jahanian · 12 years ago
  73. 6902e41 Fix the definition of the vfork() builtin on Haiku. PR14378. by Eli Friedman · 12 years ago
  74. 3d145f6 block extended signatur option. Change previous option by Fariborz Jahanian · 12 years ago
  75. 5b64e77 Fix a trivial bool-related bug I spotted while skimming David Fang's by Eli Friedman · 12 years ago
  76. 06cffc0 objective-C blocks: under cc1 flag -encode-extended-block-signature, by Fariborz Jahanian · 12 years ago
  77. 3ca23d7 objective-C blocks: Provide layout map for byref by Fariborz Jahanian · 12 years ago
  78. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  79. 5f9a7e3 Remove abuse of hasTrivial*, and fix miscompile wherein global arrays with by Richard Smith · 12 years ago
  80. 1e905da Remove a const_cast by propagating constness to the member function. by Dmitri Gribenko · 12 years ago
  81. 749ace6 search for overridden methods with comment when overriding method by Fariborz Jahanian · 12 years ago
  82. bf967be [Doc parsing] This patch searches overridden objc/c++ by Fariborz Jahanian · 12 years ago
  83. eae5a820 Fix PR 11709: Change the definition of va_list to meet AAPCS requirement by Logan Chien · 12 years ago
  84. bc0a2bb Simplify the code using SmallVector::append(), as suggested by Benjamin Kramer. by Argyrios Kyrtzidis · 12 years ago
  85. 740ae67 Move the functionality that looks for ObjC overridden methods from by Argyrios Kyrtzidis · 12 years ago
  86. 21c3607 Move the logic that searches for overridden methods from libclang to by Argyrios Kyrtzidis · 12 years ago
  87. 38eb1e1 When storing the C++ overridden methods, store them once for the by Argyrios Kyrtzidis · 12 years ago
  88. 1952354 Move the 'find macro by spelling' infrastructure to the Preprocessor class and by Dmitri Gribenko · 12 years ago
  89. d7a6b16 Fix the AST representation for non-type template arguments to encode by Eli Friedman · 12 years ago
  90. e4330a3 Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp. by Dmitri Gribenko · 12 years ago
  91. 762f159 Added missing const. by Abramo Bagnara · 12 years ago
  92. e75bb61 Fixed support for disabled wchar_t and added an appropriate test. by Abramo Bagnara · 12 years ago
  93. a6c66ce Change the representation of builtin functions in the AST by Eli Friedman · 12 years ago
  94. 9617130 objective-C: clang must implicitly convert by Fariborz Jahanian · 12 years ago
  95. c586d5d Fix a crash in type merging with enum types. by Eli Friedman · 12 years ago
  96. 4c3b8a3 Fix a -Wdocumentation warning. by Dmitri Gribenko · 12 years ago
  97. 7dd8860 Attaching comments to decls: since it was decided that Decl::isImplicit should by Dmitri Gribenko · 12 years ago
  98. 4b41c65 ASTContext::getCommentForDecl: add comment. by Dmitri Gribenko · 12 years ago
  99. 2125c90 Attaching comments to declarations: when documentation is requested for an by Dmitri Gribenko · 12 years ago
  100. 929bbfb When performing a trivial copy of a C++ type, we must be careful not by John McCall · 12 years ago