1. 33337ca Update aosp/master clang for rebase to r235153 by Pirama Arumuga Nainar · 9 years ago
  2. 3ea9e33 Update aosp/master clang for rebase to r233350 by Pirama Arumuga Nainar · 9 years ago
  3. 0e2c34f Update aosp/master clang for rebase to r230699. by Stephen Hines · 9 years ago
  4. 176edba Update aosp/master Clang for rebase to r222490. by Stephen Hines · 10 years ago
  5. c568f1e Update Clang for rebase to r212749. by Stephen Hines · 10 years ago
  6. 6bcf27b Update Clang for 3.5 rebase (r209713). by Stephen Hines · 10 years ago
  7. 651f13c Updated to Clang 3.5a. by Stephen Hines · 10 years ago
  8. c12b43a Merging r196488: by Bill Wendling · 11 years ago
  9. 7bd6785 Merging r195620: by Bill Wendling · 11 years ago
  10. f72bc46 Don't reject dependent range-based for loops in constexpr functions. The loop by Richard Smith · 11 years ago
  11. ce6426f Issue a diagnostic if we see a templated friend declaration that we do not by Richard Smith · 11 years ago
  12. 33b1f63 Issue a diagnostic if an implicitly-defined move assignment operator would move by Richard Smith · 11 years ago
  13. a8d478e Update a comment to match current core issues list. by Richard Smith · 11 years ago
  14. 743cbb9 Implement final resolution of DR1402: implicitly-declared move operators that by Richard Smith · 11 years ago
  15. 28165b7 Sema: Disallow inheriting from classes with flexible array members by David Majnemer · 11 years ago
  16. 7041fcc Sema: Remove stray whitespace around Sema::CheckBaseSpecifier by David Majnemer · 11 years ago
  17. 858d2ba Simplify and refactor the uninitialized field warning. by Richard Trieu · 11 years ago
  18. f06a2893 Make UsingShadowDecls redeclarable. This fixes some visibility problems with by Richard Smith · 11 years ago
  19. b5c7768 Allow CorrectTypo to replace CXXScopeSpecifiers that refer to classes. by Kaelyn Uhrain · 11 years ago
  20. 0823566 Fix missed exception spec checks and crashes by Alp Toker · 11 years ago
  21. 7121bdb [-fms-extensions] Permit 'override' in C++98 and 'sealed' as a synonym for 'final' by David Majnemer · 11 years ago
  22. 682a56b Revert "Fix missed exception spec checks and crashes" by Alp Toker · 11 years ago
  23. bb81f88 Fix missed exception spec checks and crashes by Alp Toker · 11 years ago
  24. bc65091 Rename some functions for consistency. by Rafael Espindola · 11 years ago
  25. b79b17b PR17567: Improve diagnostic for a mistyped constructor name. If we see something by Richard Smith · 11 years ago
  26. b2969b1 Adds Microsoft compatiable C++ record layout code to clang. by Warren Hunt · 11 years ago
  27. f0d5861 Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a holdover from the long-dead Action interface. by Ted Kremenek · 11 years ago
  28. b328e29 Add support for WG21 N3599 (literal operator template for strings) as a GNU by Richard Smith · 11 years ago
  29. 56fe35b Fix windows newlines :( by Faisal Vali · 11 years ago
  30. d6992ab Implement conversion to function pointer for generic lambdas without captures. by Faisal Vali · 11 years ago
  31. fad9e13 Implement a rudimentary form of generic lambdas. by Faisal Vali · 11 years ago
  32. ee0bc3b Simplify code to equivalent code. No need to test for null after cast<>, use by Nick Lewycky · 11 years ago
  33. ef8f90c Modify the uninitialized field visitor to detect uninitialized use across the by Richard Trieu · 11 years ago
  34. a41c97a Switch the semantic DeclContext for a block-scope declaration of a function or by Richard Smith · 11 years ago
  35. 225e982 Move the uninitialized field check to after all the field initializers are added by Richard Trieu · 11 years ago
  36. 3ddec88 Pass additional information around the uninitialized field visitor. by Richard Trieu · 11 years ago
  37. fbb08b5 Refactor the uninitialized field visitor. Also moved the calls to the visitor by Richard Trieu · 11 years ago
  38. e575359 Fix constructor-related typos. by Benjamin Kramer · 11 years ago
  39. dae9271 Improve error for "override" + non-virtual func. by Eli Friedman · 11 years ago
  40. 86164e8 Note when a decl is used in AST files. by Eli Friedman · 11 years ago
  41. 66ea35d Sema: avoid reuse of Exprs when synthesizing operator= by Pavel Labath · 11 years ago
  42. ef07203 Delete CC_Default and use the target default CC everywhere by Reid Kleckner · 11 years ago
  43. fc21813 Simplify a bit. by Rafael Espindola · 11 years ago
  44. 344472e Use pop_back_val() instead of both back() and pop_back(). by Robert Wilhelm · 11 years ago
  45. 152b4e4 Revert "Implement a rudimentary form of generic lambdas." by Manuel Klimek · 11 years ago
  46. ecb5819 Implement a rudimentary form of generic lambdas. by Faisal Vali · 11 years ago
  47. 2414697 Split isFromMainFile into two functions. by Eli Friedman · 11 years ago
  48. c895f4d const'ify Sema::ActOnCompoundStmt by by Robert Wilhelm · 11 years ago
  49. 2d67097 Refactor all diagnosing of TypoCorrections through a common function, in by Richard Smith · 11 years ago
  50. e7205c0 Omit llvm:: before SmallVector and SmallVectorImpl. We have using directive in include/clang/Basic/LLVM.h. by Robert Wilhelm · 11 years ago
  51. 4e9686b Implement [class.friend]p11's special name lookup rules for friend declarations by Richard Smith · 11 years ago
  52. a7b8797 Eliminate CXXConstructorDecl::IsImplicitlyDefined. by Jordan Rose · 11 years ago
  53. ef4579c Started implementing variable templates. Top level declarations should be fully supported, up to some limitations documented as FIXMEs or TODO. Static data member templates work very partially. Static data member templates of class templates need particular attention... by Larisse Voufo · 11 years ago
  54. 4c7736e Sema: Minor const fixups and control flow tidying. by Benjamin Kramer · 11 years ago
  55. 4ac537b C++1y literal suffix support: by Richard Smith · 11 years ago
  56. e088360 Update comment to refer to core issue number. by Richard Smith · 11 years ago
  57. 8d030c7 Improve clarity/consistency of a few UsingDecl methods and related helpers. by Enea Zaffanella · 11 years ago
  58. 0d317a0 Remove superfluous cast. by Robert Wilhelm · 11 years ago
  59. cbc820a Implement DR257 / fix PR16659: by Richard Smith · 11 years ago
  60. 1169e2f Convert Sema::MatchTemplateParametersToScopeSpecifier to ArrayRef. by Robert Wilhelm · 11 years ago
  61. c4ef948 Clean up diagnostics for inheriting constructors. by Eli Friedman · 11 years ago
  62. fd527a4 SemaDeclCXX.cpp: Dissolve a ligature "fi" in comment. by NAKAMURA Takumi · 11 years ago
  63. d4de59d Fixed source range of C++03 access declarations. by Enea Zaffanella · 11 years ago
  64. fcb5a25 Fix crash on zero-argument assignment operator. by Eli Friedman · 11 years ago
  65. 0daf1f4 Offer typo suggestions for 'using' declarations. by Kaelyn Uhrain · 11 years ago
  66. b2567dd Allow typo correction to try removing nested name specifiers. by Kaelyn Uhrain · 11 years ago
  67. 5fb478b Fix error recovery with in-class initializer. by Eli Friedman · 11 years ago
  68. b26f012 Fix line endings. by Eli Friedman · 11 years ago
  69. b4f0f3f This patch fixes PR16395, when HandleMSProperty returns null due to a declaration with no name. by Aaron Ballman · 11 years ago
  70. f6a144f Implement DR136 by David Majnemer · 11 years ago
  71. 2f68669 Revert r184401 which reverted r183462. by David Majnemer · 11 years ago
  72. 4cde94a Clean up warning and add a test. by Eli Friedman · 11 years ago
  73. 62341d3 Temporarily revert r183462: "Implement DR7" by Chandler Carruth · 11 years ago
  74. 36155c1 C++11: If a class has a user-declared copy operation or destructor, the by Richard Smith · 11 years ago
  75. 1b2209f In C++11, promote access declaration diagnostic from warning to error. There by Richard Smith · 11 years ago
  76. 7c3e615 PR12086, PR15117 by Richard Smith · 11 years ago
  77. a4bb99c Move detection of reference members binding to temporaries from building of by Richard Smith · 11 years ago
  78. 8a07cd3 Reapply r183721, reverted in r183776, with a fix for a bug in the former (we by Richard Smith · 11 years ago
  79. 8150da3 When we're synthesizing copy/move-assignment, we can't form a reference to an by Eli Friedman · 11 years ago
  80. 585bee4 Implement DR7 by David Majnemer · 11 years ago
  81. f51cfb8 [ms-cxxabi] Look up operator delete() at every virtual dtor declaration. by Peter Collingbourne · 11 years ago
  82. 7247c88 Use only explicit bool conversion operator by David Blaikie · 11 years ago
  83. 181e3ec Cleanup handling of UniqueExternalLinkage. by Rafael Espindola · 11 years ago
  84. 15f92ba Add support for __wchar_t in -fms-extensions mode. by Hans Wennborg · 11 years ago
  85. a36bbac ArrayRef'ize Sema::ActOnMemInitializer by Dmitri Gribenko · 11 years ago
  86. 9e00f12 ArrayRef'ize some SemaOverload methods by Dmitri Gribenko · 11 years ago
  87. a8942d7 C++1y: an assignment operator is implicitly 'constexpr' if it would only call 'constexpr' assignment operators for a literal class type. by Richard Smith · 11 years ago
  88. 62ed889 Replace 'MultiExprArg()' with 'None' by Dmitri Gribenko · 11 years ago
  89. 5543169 Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None by Dmitri Gribenko · 11 years ago
  90. 1f78a50 ArrayRef'ize InitializationSequence constructor and InitializationSequence::Diagnose() by Dmitri Gribenko · 11 years ago
  91. aeeacf7 Move parsing of identifiers in MS-style inline assembly into by John McCall · 11 years ago
  92. bebf5b1 C++1y: support simple variable assignments in constexpr functions. by Richard Smith · 11 years ago
  93. e5e575d Add r180263 back, but fix hasBraces() to be correct during parsing. by Rafael Espindola · 11 years ago
  94. 11dc634 Put friend decls in the correct context. by Rafael Espindola · 11 years ago
  95. a10b978 C++1y constexpr extensions, round 1: Allow most forms of declaration and by Richard Smith · 11 years ago
  96. c3bf52c C++1y: Allow aggregates to have default initializers. by Richard Smith · 11 years ago
  97. 987c030 PR15755: don't drop parameter packs when dropping parameters with default by Richard Smith · 11 years ago
  98. 82b0f86 Sema: Remove unused variable. by Benjamin Kramer · 11 years ago
  99. 7974c60 DR974: Lambdas can have default arguments. by Richard Smith · 11 years ago
  100. 76da55d Basic support for Microsoft property declarations and references thereto. by John McCall · 11 years ago