1. bea522f ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. by Jordan Rose · 12 years ago
  2. f799ae1 objective-C arg: provide fixit support when by Fariborz Jahanian · 12 years ago
  3. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  4. 65d7831 Fix for PR12222. by Erik Verbruggen · 12 years ago
  5. c83c230 PR13470: Ensure that copy-list-initialization isntantiates as by Richard Smith · 12 years ago
  6. 3bc93e3 Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as per review discussion in r170365 by David Blaikie · 12 years ago
  7. 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
  8. c2fc67e Fix a source range regression in C++ new expressions with call initializers. by David Blaikie · 12 years ago
  9. 5305641 PR13552: Fix the end location of a CXXNewExpr. by David Blaikie · 12 years ago
  10. b1502bc DR1442: In a range-based for statement, namespace 'std' is not an associated by Richard Smith · 12 years ago
  11. c5f8046 Add codegen support for __uuidof(). by Nico Weber · 12 years ago
  12. 9a4db03 PR13811: Add a FunctionParmPackExpr node to handle references to function by Richard Smith · 12 years ago
  13. 3b6bef9 Push ArrayRef through the Expr hierarchy. by Benjamin Kramer · 12 years ago
  14. a796b6c Switch some realignment calculations over to llvm::RoundUpToAlignment. by Richard Smith · 12 years ago
  15. 88d2f67 Fix alignment of array of VarDecl* following array of unsigned in LambdaExpr. by Richard Smith · 12 years ago
  16. 7657fd7 PR13570: When an unresolved overloaded call appeared in a dependent context, we by Richard Smith · 12 years ago
  17. 0d72910 Factor out computation of whether a typeid's expression is potentially by Richard Smith · 12 years ago
  18. 4ef832f Provide isConst/Volatile on CXXMethodDecl. by David Blaikie · 12 years ago
  19. 51e87c5 Enhance getImplicitObjectArgument to look through ->*. by Jordan Rose · 12 years ago
  20. 612409e PR12057: Allow variadic template pack expansions to cross lambda boundaries. by Richard Smith · 12 years ago
  21. 34f60a4 The delete argument should not be converted to void*. by Abramo Bagnara · 12 years ago
  22. 471c8b4 Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. by Benjamin Kramer · 12 years ago
  23. 5ca8639 Do not crash when we dynamic cast a final type to void*. by Sean Hunt · 12 years ago
  24. 3532936 Revert r158700 and dependent patches r158716, r158717, and r158731. by Jakob Stoklund Olesen · 12 years ago
  25. bfcb037 Improve the specification of spellings in Attr.td. by Sean Hunt · 12 years ago
  26. 0cf3c0e Correctly constify clang::CXXMemberCallExpr::getRecordDecl() by David Blaikie · 13 years ago
  27. 3539b0c Utilize getLocStart()/getLocEnd() on my recent change. by Argyrios Kyrtzidis · 13 years ago
  28. 4548ca2 Store the source range of a CXXOperatorCallExpr in the Expr object instead of by Argyrios Kyrtzidis · 13 years ago
  29. f54486a Move the computation of the lambda mangling information (mangling by Douglas Gregor · 13 years ago
  30. 9fcce65 AST representation for user-defined literals, plus just enough of semantic by Richard Smith · 13 years ago
  31. d162cf1 Reorder members to save padding. by Benjamin Kramer · 13 years ago
  32. 4ca8ac2 Implement a new type trait __is_trivially_constructible(T, Args...) by Douglas Gregor · 13 years ago
  33. 5878cbc Implement non-internal linkage for lambda closure types that need a by Douglas Gregor · 13 years ago
  34. ccc1b5e Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 13 years ago
  35. 9e8c92a Basic support for name mangling of C++11 lambda expressions. Because by Douglas Gregor · 13 years ago
  36. ebc6af1 Pacify gcc's -Wreturn-type by Matt Beaumont-Gay · 13 years ago
  37. 2aed8b8 Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself."" by Sebastian Redl · 13 years ago
  38. 1548d14 Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself." by Sebastian Redl · 13 years ago
  39. 5f688f4 Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself. by Sebastian Redl · 13 years ago
  40. 9d36f5d Implement AST (de-)serialization for lambda expressions. by Douglas Gregor · 13 years ago
  41. dfca6f5 Introduce support for template instantiation of lambda by Douglas Gregor · 13 years ago
  42. 43a1b00 Sink variable into assert by Matt Beaumont-Gay · 13 years ago
  43. 7ae282f Split the storage of lambda information between the LambdaExpr and the by Douglas Gregor · 13 years ago
  44. 9daa7bf Keep track of the set of array index variables we use when we by Douglas Gregor · 13 years ago
  45. 908a595 Don't allocate unused storage for captures/capture initializers in lambda expressions by Douglas Gregor · 13 years ago
  46. da8962a Move the storage of lambda captures and capture initializers from by Douglas Gregor · 13 years ago
  47. 5b9cc5d Represent C++ direct initializers as ParenListExprs before semantic analysis by Sebastian Redl · 13 years ago
  48. 01d0801 Introduce basic ASTs for lambda expressions. This covers: by Douglas Gregor · 13 years ago
  49. 9d9922a Fixed instantiation of DependentScopeDeclRefExpr. by Abramo Bagnara · 13 years ago
  50. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 13 years ago
  51. 99ba9e3 Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch by David Blaikie · 13 years ago
  52. bceb755 In Sema::MaybeBindToTemporary, create a CXXBindTemporaryExpr for an by Peter Collingbourne · 13 years ago
  53. 80ee6e8 There's no good reason to track temporaries in ExprWithCleanups, by John McCall · 13 years ago
  54. 7cc58b4 Added a flag to identify resolved overloaded function references. by Abramo Bagnara · 13 years ago
  55. a48e676 Re-arrange and bitfieldify data members of CXXConstructExpr to save a by Douglas Gregor · 13 years ago
  56. b0c3e09 Rename ExplicitTemplateArgumentList -> ASTTemplateArgumentListInfo, no functionality change. by Argyrios Kyrtzidis · 13 years ago
  57. 032c869 Teach CXXUnresolvedConstructExpr when it should be an by Douglas Gregor · 13 years ago
  58. 561f812 Introduce the notion of instantiation dependence into Clang's AST. A by Douglas Gregor · 13 years ago
  59. 864c041 Make yet another placeholder type, this one marking that an expression is a bound by John McCall · 14 years ago
  60. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 14 years ago
  61. 0fee330 Add CXXDynamicCastExpr::isAlwaysNull() which will be replacing the cast kind I added. by Anders Carlsson · 14 years ago
  62. d765061 Apply a bug-fix patch from Marcin Kowalczyk to the source locations for by Chandler Carruth · 14 years ago
  63. b277159 Begin reworking static analyzer support for C++ method calls. The current logic was divorced by Ted Kremenek · 14 years ago
  64. 8026f6d Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcept specifiers, unique FunctionProtoTypes with a ContextualFoldingSet, as suggested by John McCall. by Sebastian Redl · 14 years ago
  65. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 14 years ago
  66. c2f3e7f The conditional needs to be pushed before the branch. Make the test less by John McCall · 14 years ago
  67. 75e8504 Fix the source range for a member access expression that includes a by Douglas Gregor · 14 years ago
  68. 4c9be89 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  69. 7c3179c Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  70. 00cf3cc Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  71. f3db29f Push nested-name-specifier source-location information into by Douglas Gregor · 14 years ago
  72. 2882eca Pseudo-revirtualize CallExpr::getSourceRange by making it follow the by John McCall · 14 years ago
  73. 63c00d7 Remove vtables from the Stmt hierarchy; this was pretty easy as by John McCall · 14 years ago
  74. def0354 Implement proper (de-)serialization for explicit template argument by Douglas Gregor · 14 years ago
  75. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 14 years ago
  76. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  77. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  78. 1d5d0b9 Add the location of the right parenthesis of a C++ named cast by Douglas Gregor · 14 years ago
  79. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 14 years ago
  80. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  81. bebbe0d Variadic templates: extend the Expr class with a bit that specifies by Douglas Gregor · 14 years ago
  82. e23cf43 Restore r121752 without modification. by John McCall · 14 years ago
  83. 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 14 years ago
  84. 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 14 years ago
  85. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  86. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  87. 0943168 Add an assertion, fix a whole bunch of bugs, comment the assertion by John McCall · 14 years ago
  88. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  89. a437ad3 Have CXXDeleteExpr::getDestroyedType return the actual destroyed type by Craig Silverstein · 14 years ago
  90. 40749ee Improve source-location information for CXXConstructExpr nodes, by by Douglas Gregor · 14 years ago
  91. b8e3923 Fixes an assertion violation when bind to temporary by Fariborz Jahanian · 14 years ago
  92. 3248854 Rename alignof -> alignOf to avoid irritating C++'0x compilers, PR8423 by Chris Lattner · 14 years ago
  93. 007a9b1 Add helper for extracting the CXXRecordDecl for the implicit argument to by Chandler Carruth · 14 years ago
  94. 428edaf Improve the tracking of source locations for parentheses in constructor calls. by Chandler Carruth · 14 years ago
  95. c87fa06 Had the wrong type for ArgType. :-( Fixed. by Craig Silverstein · 14 years ago
  96. 0fa0b78 The type-to-delete may not be a pointer if it's a dependent type. by Craig Silverstein · 14 years ago
  97. 5833b0b When marking the declarations in a default argument expression as by Douglas Gregor · 14 years ago
  98. 0dfd848 Eagerly evaluate type traits in Sema instead of lazily in AST. They actually need Sema access to be correct, fixes coming up. by Sebastian Redl · 14 years ago
  99. 2e15622 Define and implement CXXNoexceptExpr. Create it in Sema. by Sebastian Redl · 14 years ago
  100. 3d37c0a Add proper type-source information to UnaryTypeTraitExpr, including by Douglas Gregor · 14 years ago