1. 61c4d28 Implement support for template template parameter packs, e.g., by Douglas Gregor · 14 years ago
  2. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 14 years ago
  3. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  4. 56bc983 When instantiating a non-type template parameter pack, be sure to by Douglas Gregor · 14 years ago
  5. f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  6. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  7. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  8. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  9. 7cd7d1a Add a new expression kind, OpaqueValueExpr, which is useful for by John McCall · 14 years ago
  10. 8ac2d44 Eliminate usage of ObjCSuperExpr used for by Fariborz Jahanian · 14 years ago
  11. 2e15622 Define and implement CXXNoexceptExpr. Create it in Sema. by Sebastian Redl · 14 years ago
  12. 01b7c30 Microsoft's __uuidof operator implementation part 1. by Francois Pichet · 14 years ago
  13. e2ca6d4 Eliminate CXXBindReferenceExpr, which was used in a ton of by Douglas Gregor · 14 years ago
  14. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  15. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  16. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  17. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  18. 7b3e3f6 Call the base class in StmtProfiler::VisitOverloadExpr. by Argyrios Kyrtzidis · 14 years ago
  19. c35919b Call the correct base class in StmtProfiler::VisitUnresolvedLookupExpr. by Argyrios Kyrtzidis · 14 years ago
  20. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 14 years ago
  21. 218f47f When computing the canonical profile of a DeclRefExpr or MemberExpr, by Douglas Gregor · 14 years ago
  22. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  23. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  24. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  25. 89f9d3a Added a field to BlockDeclRefExpr for future use. No functionality change yet. by Fariborz Jahanian · 14 years ago
  26. 8f43d52 Fill in some silly defaults to silence a GCC warning by Douglas Gregor · 14 years ago
  27. a89064a Profile type-dependent uses of overloaded operators in C++ the same by Douglas Gregor · 14 years ago
  28. 4bfe196 Reapplying patch to change StmtNodes.def to StmtNodes.td, this time by Sean Hunt · 14 years ago
  29. c302113 Revert r103072; I accidentally ended up deleting a bunch of trailing by Sean Hunt · 14 years ago
  30. 9d90d62 Change StmtNodes.def to StmtNodes.td in anticipation of a rewrite of attributes by Sean Hunt · 14 years ago
  31. cc8a5d5 Teach __builtin_offsetof to compute the offsets of members of base by Douglas Gregor · 14 years ago
  32. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 14 years ago
  33. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 15 years ago
  34. 0ece491 ShouldDestroyTemporaries? I don't think so. by Anders Carlsson · 15 years ago
  35. 51fa86f r90313, in which OverloadedFunctionDecl is removed and never spoken of again. by John McCall · 15 years ago
  36. aa81e16 Rework how we support C++ implicit member accesses. If we can resolve an by John McCall · 15 years ago
  37. 129e2df Eliminate the use of OverloadedFunctionDecl in member expressions. by John McCall · 15 years ago
  38. 770b4a8 Remove VISIBILITY_HIDDEN from lib/AST. by Benjamin Kramer · 15 years ago
  39. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  40. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  41. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  42. 865d447 Draw a brighter line between "unresolved" expressions, where we have done the by John McCall · 15 years ago
  43. 788cd06 Introduce a new representation for template template by Douglas Gregor · 15 years ago
  44. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  45. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  46. 932eb6d Add safe part of previous (reverted) commit, necessary to update to LLVM API change. by Daniel Dunbar · 15 years ago
  47. f015b03 Revert "Switch a few clients over to StringLiteral::getString.", this is breaking some projects, but I don't have a test case yet. by Daniel Dunbar · 15 years ago
  48. df4eee9 Switch a few clients over to StringLiteral::getString. by Daniel Dunbar · 15 years ago
  49. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  50. a71d819 Implement AST, semantics, and CodeGen for C++ pseudo-destructor by Douglas Gregor · 15 years ago
  51. a38c687 Improved handling for dependent, qualified member access expressions, e.g., by Douglas Gregor · 15 years ago
  52. 83f6faf Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate by Douglas Gregor · 15 years ago
  53. 0979c80 Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will by Douglas Gregor · 15 years ago
  54. bd4c4ae When a member reference expression includes a qualifier on the member by Douglas Gregor · 15 years ago
  55. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago
  56. d2ae5aa Renamed ClassProp data member of ObjCImplctSetterGetterRefExpr by Fariborz Jahanian · 15 years ago
  57. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 15 years ago
  58. 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 15 years ago
  59. 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 15 years ago
  60. 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 15 years ago
  61. 6f2c46b Make canonicalization of overloaded function declarations match the by Douglas Gregor · 15 years ago
  62. a2ffb98 Canonicalize template template parameters. We can't test this yet, but by Douglas Gregor · 15 years ago
  63. 4a3f780 Canonicalize function parameters by Douglas Gregor · 15 years ago
  64. 6ebd15e Canonicalization and profiling for overloaded function declarations, by Douglas Gregor · 15 years ago
  65. b197572 Canonicalization for dependent typeof(expr) types. by Douglas Gregor · 15 years ago
  66. 828e226 Use the new statement/expression profiling code to unique dependent by Douglas Gregor · 15 years ago
  67. 00aa3a6 Fix a typo in a comment by Douglas Gregor · 15 years ago
  68. d584eb2 Profiling the pointer of a canonical type is sufficient to uniquely identify the type by Douglas Gregor · 15 years ago
  69. 3fe81fc Finish profile support for statements. by Douglas Gregor · 15 years ago
  70. 071f4eb Complete profile support for C++ and Objective-C expressions by Douglas Gregor · 15 years ago
  71. 41ef0c3 Add a Profile function for statements so that we can (eventually) determine by Douglas Gregor · 15 years ago