1. 378fe06 Tweak "key function" rules so that they work for templates with virtual by Eli Friedman · 15 years ago
  2. ed97649 Fix "using typename" and the instantiation of non-dependent using declarations. by John McCall · 15 years ago
  3. 48eda2c Be a little more clever about inline member functions that are marked inline in the inline class declaration but not in the actual definition: by Anders Carlsson · 15 years ago
  4. 6e132aa Fix for PR5650 - Revised vector_size attribute handling to be done earlier before declaration is finalized. by John Thompson · 15 years ago
  5. f595cc4 Make the type of the Decl referred to by a MemberExpr a bit more precise. by Eli Friedman · 15 years ago
  6. 3aaf486 Make sure that overridden method decls are always canonical. by Anders Carlsson · 15 years ago
  7. 67f85fc Fix for PR5447: teach Evaluate to deal with floating-point conditionals. by Eli Friedman · 15 years ago
  8. c013118 Add recursion guards to ice-checking and evaluation for declrefs, so we by Eli Friedman · 15 years ago
  9. e7184df A new helper function to set various bits in the class when by Fariborz Jahanian · 15 years ago
  10. e7cb7e4 Kill a few more random stderr uses. by Daniel Dunbar · 15 years ago
  11. 806c12e Convert StmtDumper to raw_ostream. I forget why. by Daniel Dunbar · 15 years ago
  12. ccf4350 Introduce the notion of literal types, as specified in C++0x. by Sebastian Redl · 15 years ago
  13. 802ab45 Improve source location information for C++ member initializers in a by Douglas Gregor · 15 years ago
  14. 5ec02ae In Sema, whenever we think that a function is going to cause a vtable to be generated, we mark any virtual implicit member functions as referenced. by Anders Carlsson · 15 years ago
  15. 51fa86f r90313, in which OverloadedFunctionDecl is removed and never spoken of again. by John McCall · 15 years ago
  16. 0bd6feb Push overloaded function templates through the parser using a totally different by John McCall · 15 years ago
  17. aa81e16 Rework how we support C++ implicit member accesses. If we can resolve an by John McCall · 15 years ago
  18. 94a3900 Allocate MultipleDC objects using the allocator associated with by Ted Kremenek · 15 years ago
  19. 1a5e0d7 Have ASTRecordLayout keep track of the key function, in preparation of fixing a synthetic ctor/dtor bug. by Anders Carlsson · 15 years ago
  20. 129e2df Eliminate the use of OverloadedFunctionDecl in member expressions. by John McCall · 15 years ago
  21. 6515afe Add const to accessors that don't modify the object. by Mike Stump · 15 years ago
  22. 8d2c0a9 Fix a crash when ivar type is a __strong SEL. Fallout from by Fariborz Jahanian · 15 years ago
  23. 006b0eb Adapt to the DOTGraphTraits changes in LLVM. by Tobias Grosser · 15 years ago
  24. 2024f4d Streamline Stmt::CollectingStats() and Decl::CollectingStats(). No functionality change. by Kovarththanan Rajaratnam · 15 years ago
  25. 3e518bd Add DeclarationName support for C++0x operator literals. They should now work as by Sean Hunt · 15 years ago
  26. 770b4a8 Remove VISIBILITY_HIDDEN from lib/AST. by Benjamin Kramer · 15 years ago
  27. 261fba6 Use a PointerIntPair for the PrimaryBaseInfo. Yay for clever LLVM data structures! by Anders Carlsson · 15 years ago
  28. ce2009a Add a new PrimaryBaseInfo struct that combines the record decl of a primary base with whether it's virtual or not. by Anders Carlsson · 15 years ago
  29. e9d6554 Slight tweak to the algorithm for getLinkage(). by Eli Friedman · 15 years ago
  30. 369a3bd Allow user re-definition of SEL as well as accessing its fields. by Fariborz Jahanian · 15 years ago
  31. d85b5b9 Implement the rules in C++ [basic.link] and C99 6.2.2 for computing by Douglas Gregor · 15 years ago
  32. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  33. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  34. 80ad16f Helper function for turning a TemplateName into a DeclarationName. by John McCall · 15 years ago
  35. 0430975 Teach Evaluate to handle member expressions referring to enum constants and by Eli Friedman · 15 years ago
  36. 60bce3e Fixe a crash in encoding of SEL type caused by recent changes. by Fariborz Jahanian · 15 years ago
  37. bc0e078 Handle converting member pointers to bool. by Anders Carlsson · 15 years ago
  38. 04765ac Make 'SEL' pointer to a builtin type and not an by Fariborz Jahanian · 15 years ago
  39. 5d484e8 Intercept sizeof and alignof references before they get into ASTContext methods. This fixes a crash when writing sizeof(Incomplete&), and lets ASTContext's methods do the right thing for CodeGen, which fixes PR5590. by Sebastian Redl · 15 years ago
  40. eb0d8c9 Let using directives refer to namespace aliases. Fixes PR5479. by Sebastian Redl · 15 years ago
  41. 74295b3 Canonical template arguments that are template template parameters by by Douglas Gregor · 15 years ago
  42. 0da76df Centralize and complete the computation of value- and type-dependence for DeclRefExprs by Douglas Gregor · 15 years ago
  43. d5532b6 Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations" into by John McCall · 15 years ago
  44. e4fc0d9 When laying out bitfields, make sure that the data size is always aligned to a byte. This fixes PR5580. by Anders Carlsson · 15 years ago
  45. 42dbcc4 Move bit-field layout out into a separate function. No functionality change. by Anders Carlsson · 15 years ago
  46. 13dcd00 This patch implements objective-c's 'SEL' type as a built-in by Fariborz Jahanian · 15 years ago
  47. 512ce60 DeclPrinter: Indent access specifiers. by Daniel Dunbar · 15 years ago
  48. c523656 Add 1+2 consts. by Daniel Dunbar · 15 years ago
  49. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  50. bbd37c6 Added rudimentary C++0x attribute support. by Sean Hunt · 15 years ago
  51. 73460a3 Deduce a ConstantArrayType from a value-dependent initializer list by Douglas Gregor · 15 years ago
  52. 865d447 Draw a brighter line between "unresolved" expressions, where we have done the by John McCall · 15 years ago
  53. cb78d88 Cope with an amusingly little anomaly with dependent types and by Douglas Gregor · 15 years ago
  54. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  55. 2dbdd62 Add ObjCClassDecl::getSourceRange(). by Ted Kremenek · 15 years ago
  56. 321c22f Add SourceLocations to ObjCClassDecl for the class identifiers referenced by @class. by Ted Kremenek · 15 years ago
  57. c32b1d8 Do not register ObjCInterfaceDecls implicitly created by @class in the by Ted Kremenek · 15 years ago
  58. 5e530af Added block type introspection support. by David Chisnall · 15 years ago
  59. 58beed9 Fix PR5531. by Anders Carlsson · 15 years ago
  60. 9488ea1 Instead of hanging a using declaration's target decls directly off the using by John McCall · 15 years ago
  61. 9f853df Unify the way destructor epilogues are generated for synthesized and regular destructors. Also fix PR5529. by Anders Carlsson · 15 years ago
  62. fa1a06e When querying type qualifiers on QualType via one of the "non-local" by Douglas Gregor · 15 years ago
  63. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  64. 7f92f03 Add constant evaluation for comma operator with floating-point operand. Fixes by Eli Friedman · 15 years ago
  65. 894993f Fix a missing include from r88876. by Chandler Carruth · 15 years ago
  66. 70f5bc7 Add DeclarationName::dump(). by Anders Carlsson · 15 years ago
  67. 0e489ea When dumping implicit cast exprs, print out whether the cast is an lvalue cast or not. by Anders Carlsson · 15 years ago
  68. 79cbc7d Add an internal CreateRecordDecl that will create a CXXRecordDecl when compiling C++ and a RecordDecl otherwise. by Anders Carlsson · 15 years ago
  69. 66724ea If we attempt to add a constructor template specialization that looks by Douglas Gregor · 15 years ago
  70. fd47648 Revert r88718, which does NOT solve the constructor-template-as-copy-constructor issue. Big thanks to John for finding this by Douglas Gregor · 15 years ago
  71. cad84b7 A constructor template cannot be instantiated to a copy by Douglas Gregor · 15 years ago
  72. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 15 years ago
  73. 11de6de Add a CK_BaseToDerived cast kind. by Anders Carlsson · 15 years ago
  74. fb898e1 When comparing template parameter lists, distinguish between three cases: by Douglas Gregor · 15 years ago
  75. 00b98c2 Improve source-location information for implicitly-generated member call expressions by Douglas Gregor · 15 years ago
  76. af8e6ed Random const correctness, and incidentally use computeDeclContext when building by John McCall · 15 years ago
  77. db0d4b7 Template argument deduction for template template parameters. This by Douglas Gregor · 15 years ago
  78. 7bb87fc Fix speculative parsing of dependent template names in by Douglas Gregor · 15 years ago
  79. 37acf5a Fixup spacing. by Mike Stump · 15 years ago
  80. 788cd06 Introduce a new representation for template template by Douglas Gregor · 15 years ago
  81. 3958b50 Fix clang's use of DenseMap iterators after r86636 fixed their constness. by Jeffrey Yasskin · 15 years ago
  82. fee8a3c Move all of the type-printing logic to its own C++ source file by Douglas Gregor · 15 years ago
  83. 1c03ca3 __uint128_t is indeed an unsigned integer type. Fixes PR5435. by Anders Carlsson · 15 years ago
  84. 680523a Implement -Wconversion. Off by default, in the non-gcc group. There's by John McCall · 15 years ago
  85. 88fad63 Make sure isCopyAssignment is only true for actual copy assignment operators, by Eli Friedman · 15 years ago
  86. 632d772 Make ASTContext::getIntWidth return 1 for all boolean type variations, not just for the unqualified, unaliased bool. by Sebastian Redl · 15 years ago
  87. 393c247 Added support for static variables which require by Fariborz Jahanian · 15 years ago
  88. 923d56d Allow the element type of arrays to be incomplete in C++. by Sebastian Redl · 15 years ago
  89. 968db33 Refine layout for indirect virtual base classes. by Mike Stump · 15 years ago
  90. d6b5f13 Give DeclarationName's operator< a more predictable, useful ordering by Douglas Gregor · 15 years ago
  91. 87c12c4 Store the unresolved class type in MemberPointerType's Class field, by Douglas Gregor · 15 years ago
  92. ca1bdd7 Implement support for parsing dependent template-ids that refer to by Douglas Gregor · 15 years ago
  93. df317bf Refine volatile handling, specifically, we must have the canonical by Mike Stump · 15 years ago
  94. cf18465 silence a warning. by Chris Lattner · 15 years ago
  95. 9c21289 Refine codegen for covariant thunks that return references. by Mike Stump · 15 years ago
  96. a6f14e1 Property declared in continuation class can only be used to by Fariborz Jahanian · 15 years ago
  97. cf3293e When determining whether a reference to a static data member is an by Douglas Gregor · 15 years ago
  98. 87a924e Fix a crazy canonical-types bug because canonicalizing a by Douglas Gregor · 15 years ago
  99. 682054c When looking for a copy-assignment operator to determine the cv-qualifiers on its argument type, ignore assignment operator templates by Douglas Gregor · 15 years ago
  100. e23fa2d This patch computes composite type of two objective-c expressions by Fariborz Jahanian · 15 years ago