1. d2615cc Add 178663 back. by Rafael Espindola · 11 years ago
  2. 4f8a3eb Revert 178663. by Rafael Espindola · 11 years ago
  3. 8f187f6 Don't compute a patched/semantic storage class. by Rafael Espindola · 11 years ago
  4. 3892d02 Ignore visibility from enclosing template arguments by John McCall · 11 years ago
  5. 6bd9929 Ensure that type definitions present in just-loaded modules are visible. by Douglas Gregor · 11 years ago
  6. 3ac83d6 patch for PR9027 and // rdar://11861085 by Fariborz Jahanian · 12 years ago
  7. 80ad52f s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 12 years ago
  8. 3bc93e3 Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as per review discussion in r170365 by David Blaikie · 12 years ago
  9. bc2a35d Finish implementing 'selected constructor' rules for triviality in C++11. In by Richard Smith · 12 years ago
  10. 5579865 Remove some remnants of the assumption that there is at most one of each by Richard Smith · 12 years ago
  11. ac71351 Properly compute triviality for explicitly-defaulted or deleted special members. by Richard Smith · 12 years ago
  12. d5bc867 Implement C++03 [dcl.init]p5's checking for value-initialization of references by Richard Smith · 12 years ago
  13. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  14. 7d04d3a Refactor to reduce duplication in handling of special member functions. No functionality change. by Richard Smith · 12 years ago
  15. acf796b Store on the CXXRecordDecl whether the class has, or would have, a copy by Richard Smith · 12 years ago
  16. 2a82ca2 Introduce ASTUnresolvedSet, an UnresolvedSet-like class, whose contents are by Argyrios Kyrtzidis · 12 years ago
  17. 9d29543 Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, by Argyrios Kyrtzidis · 12 years ago
  18. 426391c A step towards sorting out handling of triviality of special members in C++11. by Richard Smith · 12 years ago
  19. 93af2b8 PR14279: Work around this major miscompilation by treating move operations as by Richard Smith · 12 years ago
  20. 8da8a66 Add the TypeSourceInfo for the lambda call operator to the lambda's by Eli Friedman · 12 years ago
  21. 17d35c3 Normalize line endings of r163013 (part 2). by Joao Matos · 12 years ago
  22. 6666ed4 Improved MSVC __interface support by adding first class support for it, instead of aliasing to "struct" which had some incorrect behaviour. Patch by David Robins. by Joao Matos · 12 years ago
  23. 4e79fdf [analyzer] Correctly devirtualize virtual method calls in constructors. by Jordan Rose · 12 years ago
  24. 2cd7f41 Fix ambiguity detection in GetBestOverloadCandidateSimple. by Benjamin Kramer · 12 years ago
  25. 3fe52ff When we have an Objective-C object with non-trivial lifetime in a by Douglas Gregor · 12 years ago
  26. e3f470a Stop instantiating a class if we hit a static_assert failure. Also, if the by Richard Smith · 12 years ago
  27. ee3096a CXXRecordDecl: Split getBases/getVBases into a slow and a fast path. by Benjamin Kramer · 12 years ago
  28. 0713d99 Fix a crash I introduced in r159212. by Rafael Espindola · 12 years ago
  29. 0b4fe50 During codegen of a virtual call we would extract any casts in the expression by Rafael Espindola · 12 years ago
  30. a125350 Documentation cleanup: Made a parameter name in a \param command match the code by James Dennett · 12 years ago
  31. d3861ce Remove CXXRecordDecl flags which are unused after r158289. by Richard Smith · 12 years ago
  32. 3f5f558 PR13051: If a constructor is explicitly defaulted, it isn't marked as being by Richard Smith · 12 years ago
  33. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  34. 113c444 A non-explicit constructor template with a second parameter that is a by Douglas Gregor · 12 years ago
  35. d079abf A union can have a constexpr defaulted default constructor, if it has an by Richard Smith · 12 years ago
  36. f108c63 A conversion operator in a base class shouldn't hide another conversion operator by Richard Smith · 12 years ago
  37. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  38. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  39. 540659e Make sure the accessors for overridden methods don't return inherited constructors. Fixes PR12219. by Eli Friedman · 12 years ago
  40. dfefb84 Teach CXXRecordDecl::hasIrrelevantDestructor to check the base classes and by Richard Smith · 12 years ago
  41. ac1303e Generate an AST for the conversion from a lambda closure type to a by Douglas Gregor · 12 years ago
  42. f4b7de1 Improve our handling of lambda expressions that occur within default by Douglas Gregor · 12 years ago
  43. 27dd7d9 Rework the Sema/AST/IRgen dance for the lambda closure type's by Douglas Gregor · 12 years ago
  44. f6e2e02 Implicitly define a lambda's conversion functions (to function by Douglas Gregor · 12 years ago
  45. 7ae282f Split the storage of lambda information between the LambdaExpr and the by Douglas Gregor · 12 years ago
  46. 9daa7bf Keep track of the set of array index variables we use when we by Douglas Gregor · 12 years ago
  47. da8962a Move the storage of lambda captures and capture initializers from by Douglas Gregor · 12 years ago
  48. 86c3ae4 Update constexpr implementation to match CWG's chosen approach for core issues by Richard Smith · 12 years ago
  49. 41105ad const-qualify CXXRecordDecl::getCaptureFields. by Eli Friedman · 12 years ago
  50. 4d8d22b Extend CXXRecordDecl with a function that determines the mapping from by Douglas Gregor · 12 years ago
  51. b4e5e28 CWG issue 1405: mutable members are allowed in literal types, but can't undergo by Richard Smith · 12 years ago
  52. d7a3e2c Revert my patches which removed Diagnostic.h includes by moving some operator overloads out of line. by Benjamin Kramer · 12 years ago
  53. 00bd44d Move various diagnostic operator<< overloads out of line and remove includes of Diagnostic.h. by Benjamin Kramer · 13 years ago
  54. f15fda0 constexpr: by Richard Smith · 13 years ago
  55. c221411 Remove redundant checks in CXXRecordDecl::isCLike(), as suggested by Sebastian. by Argyrios Kyrtzidis · 13 years ago
  56. 4fe19b5 Change HasMutableFields to HasOnlyCMembers and consider that a tag inside by Argyrios Kyrtzidis · 13 years ago
  57. 69b26d6 In CXXRecordDecl::isCLike(), also check for PODness. by Argyrios Kyrtzidis · 13 years ago
  58. 277b156 Introduce CXXRecordDecl::isCLike() that is true if the class is C-like, by Argyrios Kyrtzidis · 13 years ago
  59. 561d3ab Remove unnecessary default cases in switches over enums. by David Blaikie · 13 years ago
  60. ef96ee0 De-virtualize getPreviousDecl() and getMostRecentDecl() when we know by Douglas Gregor · 13 years ago
  61. de8facc constexpr: fix typo resulting in move constructors sometimes not being by Richard Smith · 13 years ago
  62. 9bc6fb6 Pack UsingDecl more. by Benjamin Kramer · 13 years ago
  63. f5c9f9f Switch NamespaceDecl from its own hand-rolled redeclaration chain over by Douglas Gregor · 13 years ago
  64. 72899c3 More lambda work: semantic analysis of capturing 'this'. It's a bit complicated, but we have to be careful about when exactly captures are marked given PotentiallyPotentiallyEvaluated contexts. (Actually, it's not 100% correct yet, but it's close enough for the moment.) by Eli Friedman · 13 years ago
  65. 1e68ecc When creating declarations that are deserialized from an module file, by Douglas Gregor · 13 years ago
  66. 6180245 PR11614: Mark defaulted special constructors as constexpr if their implicit by Richard Smith · 13 years ago
  67. 99ba9e3 Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 13 years ago
  68. 45fa560 When we notice that a member function is defined with "= delete" or "= by Douglas Gregor · 13 years ago
  69. 76852c2 Rework the AST for the initializer of a delegating constructor, so by Douglas Gregor · 13 years ago
  70. dd67723 Simplify RecordDeclCXX::setBases slightly. No functional change. by Richard Smith · 13 years ago
  71. 5fa6a04 constexpr: don't consider class types with mutable members to be literal types. by Richard Smith · 13 years ago
  72. a6b8b2c Constant expression evaluation refactoring: by Richard Smith · 13 years ago
  73. d61db33 Per C++ [class.bit]p2, unnamed bit-fields are not members. Fixes PR10289. by Douglas Gregor · 13 years ago
  74. eb2d1f1 Removing a bunch of dead returns/breaks after llvm_unreachables. by David Blaikie · 13 years ago
  75. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  76. a81b36d Fix a broken assert in AST/DeclCXX.cpp. by Richard Trieu · 13 years ago
  77. 017ab77 Implement the suggested resolution of WG21 N3307 issue 19: When determining whether a class is an aggregate in C++0x, treat all functions which are neither deleted nor defaulted as user-provided, not just special member functions. The wording of the standard only defines the term "user-provided" for special member functions, but the intent seems to be that any function can be user-provided. by Richard Smith · 13 years ago
  78. 85ea7aa Declare and define implicit move constructor and assignment operator. by Sebastian Redl · 13 years ago
  79. af1fc7a Track in the AST whether a function is constexpr. by Richard Smith · 13 years ago
  80. 6b8bc07 Renamings to consistently use 'Constexpr' not 'ConstExpr' when referring to the C++0x 'constexpr' keyword. by Richard Smith · 13 years ago
  81. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  82. 9f8ee2e Correctly set up the list of virtual base classes for a CXXRecordDecl. Previously we got the source range wrong for everything in the virtual bases list. by Richard Smith · 13 years ago
  83. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  84. 7a614d8 Implement support for C++11 in-class initialization of non-static data members. by Richard Smith · 13 years ago
  85. ffe37fd Implement a little bit of cleanup and a lot more of the base work by Sean Hunt · 13 years ago
  86. cf34e75 Implement the new C++0x rules for non-trivial things in unions so that by Sean Hunt · 13 years ago
  87. 2bb1101 When determining whether we can make a declaration into a global by Douglas Gregor · 13 years ago
  88. cdee3fe Implement implicit deletion of default constructors. by Sean Hunt · 13 years ago
  89. 37b8c9e Clean up trivial default constructors now. by Sean Hunt · 13 years ago
  90. 023df37 Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and by Sean Hunt · 13 years ago
  91. 5f802e5 Revert r130912 in order to approach defaulted functions from the other by Sean Hunt · 13 years ago
  92. ad7ec12 Implement some framework for defaulted constructors. by Sean Hunt · 13 years ago
  93. ec997dc Rename the last '[hH]asStandardLayout' entites to '[iI]sStandardLayout' by Chandler Carruth · 13 years ago
  94. a822544 Completely re-implement the core logic behind the __is_standard_layout by Chandler Carruth · 13 years ago
  95. 6e35b65 Initialize HasStandardLayout. by Benjamin Kramer · 13 years ago
  96. 61d0b6b More cleanup of template argument deduction and its handling of by Douglas Gregor · 13 years ago
  97. 20c0da7 t/clang/type-traits by John Wiegley · 13 years ago
  98. 9b6347c Implement most of the remaining logic in __is_literal type trait. This by Chandler Carruth · 13 years ago
  99. 4d6e5a2 Begin tracking trivialness of move constructors and move assignment by Chandler Carruth · 13 years ago
  100. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 13 years ago