1. 76d3264 Recommit r102215, this time being more careful to only set the "principal by John McCall · 14 years ago
  2. f0bf4d5 Revert r102215. This causes clang crash while compiling a test case from gdb testsuite. by Devang Patel · 14 years ago
  3. f88b0d6 Transition the last acceptable-result filter kind in LookupResult over to use by John McCall · 14 years ago
  4. d57a38e When instantiating a typedef of an anonymous tag type, note in the tag by Douglas Gregor · 14 years ago
  5. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  6. cb27b0f Be sure to instantiate the parameters of a function, even when the by Douglas Gregor · 14 years ago
  7. 6cd3b9f Instantiate default argument expressions even if their associated parameter by John McCall · 14 years ago
  8. ea7390c Set access properly on instantiated friend class template declarations. by John McCall · 14 years ago
  9. c53d0d7 Introduce an egregious hack to work around a bug in libstdc++ 4.2.x's by Douglas Gregor · 14 years ago
  10. af2094e Implement dependent friend function template specializations. by John McCall · 14 years ago
  11. 06245bf Improve handling of friend types in several ways: by Douglas Gregor · 14 years ago
  12. 1eabb7d Improve diagnostics when an elaborated-type-specifer containing a by Douglas Gregor · 14 years ago
  13. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 14 years ago
  14. b0cb022 Implement method friends in class templates and fix a few related problems. by John McCall · 14 years ago
  15. b1a56e7 Put function templates instantiated from friend declarations in the correct by John McCall · 14 years ago
  16. d325daa Reapply r99596 with a fix: link an instantiated friend function to its by John McCall · 14 years ago
  17. a7bc855 Apparently that didn't work. Reverting for now. by John McCall · 14 years ago
  18. d7e29e1 Properly instantiate and link in friend function templates. by John McCall · 14 years ago
  19. 32f2fb5 Preserve type-source information in friend declarations. by John McCall · 14 years ago
  20. 93ba857 Properly instantiate friend class template declarations and link them into by John McCall · 14 years ago
  21. e131c57 Revert 99477 since it appears to be breaking the clang-x86_64-darwin10-fnt by Bob Wilson · 14 years ago
  22. a56623b Properly instantiate and link in friend-class-template declarations. by John McCall · 14 years ago
  23. 28329e5 When pulling apart an initializer that involves a CXXConstructExpr, do by Douglas Gregor · 14 years ago
  24. 0c01d18 Implement a framework for the delay of arbitrary diagnostics within by John McCall · 14 years ago
  25. b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 14 years ago
  26. 21ef0fa Maintain type source information for functions through template by John McCall · 14 years ago
  27. 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 14 years ago
  28. 6b98b2e Unify initializer-instantiation code for variable declarations and by Douglas Gregor · 14 years ago
  29. 449d0a8 When looking for a redeclaration of a static variable, only look for redeclarations. Fixes PR6449 by Douglas Gregor · 14 years ago
  30. 96084f1 When instantiating a function-scoped enum, make sure that it and its by Douglas Gregor · 14 years ago
  31. 0022554 Robustify instantiation of templates when there are errors in the by Douglas Gregor · 14 years ago
  32. 7c1e98f When looking for the instantiated declaration that corresponds to a by Douglas Gregor · 14 years ago
  33. 2fa9800 Do not try to instantiate invalid declarations. It's a recipe for by Douglas Gregor · 14 years ago
  34. 3dbd3d5 Support local namespace aliases and permit them to be instantiated. by John McCall · 14 years ago
  35. 291b441 Skip implicit instantiation of templated variables where a more recent by Chandler Carruth · 14 years ago
  36. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 14 years ago
  37. 60c93c9 Migrate the mish-mash of declaration checks in by Douglas Gregor · 14 years ago
  38. 63644fa Workaround for friend template instantiation crash in PR5848, from Keir Mierle! by Douglas Gregor · 14 years ago
  39. 68b6b87 Teach Sema how to instantiate a local function declaration properly. Fixes by John McCall · 14 years ago
  40. 8b013bd Cope with finding the "instantiated" declaration when we are by Douglas Gregor · 14 years ago
  41. 6d3e627 Fix two issues with the substitution of template template parameters by Douglas Gregor · 14 years ago
  42. a89ebea Look through CXXExprWithTemporaries when digging out the original by Douglas Gregor · 15 years ago
  43. 9db7dbb Rework base and member initialization in constructors, with several by Douglas Gregor · 15 years ago
  44. 3b85ecf Preserve access for enum constants during template instantiation. by John McCall · 15 years ago
  45. 7a9813c Create function, block, and template parameters in the context of the by John McCall · 15 years ago
  46. 46460a6 First pass at collecting access-specifier information along inheritance paths. by John McCall · 15 years ago
  47. ab8bbf4 Encoding calling conventions in the type system, from Charles Davis! by Douglas Gregor · 15 years ago
  48. 60406be Introduce a second queue of "local" pending implicit instantiation, by Douglas Gregor · 15 years ago
  49. 79c2278 When we are instantiating a member function of a local class, be sure by Douglas Gregor · 15 years ago
  50. 5126fd0 Typedefs can be redeclared. That seems like something we should record in by John McCall · 15 years ago
  51. 7557a13 Egregious, disgusting workaround for PR5866. We need to rework how we by Douglas Gregor · 15 years ago
  52. 323c310 Add using shadow decls to the "instantiated locals" map, fixing PR5847. by John McCall · 15 years ago
  53. e129d44 Patch over yet more problems with friend declarations which were provoking by John McCall · 15 years ago
  54. 6c1c1b8 Link up member-class redeclarations during template instantiation. by John McCall · 15 years ago
  55. e976ffe Fix PR5716 by bandaging over the solution until we can come back to it. by John McCall · 15 years ago
  56. 6eef519 Improve template instantiation for object constructions in several ways: by Douglas Gregor · 15 years ago
  57. a88cfbf Rework the way we handle template instantiation for by Douglas Gregor · 15 years ago
  58. 9f54ad4 Implement redeclaration checking and hiding semantics for using declarations. There by John McCall · 15 years ago
  59. 0ae7b3f Implement template instantiation for exception specifications. Also, by Douglas Gregor · 15 years ago
  60. 604e7f1 Correctly implement the C++03 and 0x restrictions on class-member using by John McCall · 15 years ago
  61. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  62. ed97649 Fix "using typename" and the instantiation of non-dependent using declarations. by John McCall · 15 years ago
  63. e7184df A new helper function to set various bits in the class when by Fariborz Jahanian · 15 years ago
  64. 1f5f3a4 When we're building a CXXExprWithTemporaries, only include those by Douglas Gregor · 15 years ago
  65. 802ab45 Improve source location information for C++ member initializers in a by Douglas Gregor · 15 years ago
  66. e6342c0 Funtion templates and function template specializations do not by Douglas Gregor · 15 years ago
  67. 4ba3136 Move the checking of overridden virtual functions into the code path by Douglas Gregor · 15 years ago
  68. 7dafdf5 Remove all of Sema's explicit uses of OverloadedFunctionDecl except for by John McCall · 15 years ago
  69. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  70. a244dc3 Fix a crash when "instantiating" VarDecls that are neither type nor value dependent. by Anders Carlsson · 15 years ago
  71. d5532b6 Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations" into by John McCall · 15 years ago
  72. 6826314 Overhaul previous-declaration and overload checking to work on lookup results by John McCall · 15 years ago
  73. a165da0 Track overriding methods when instantiating a template class. Fixes PR5550. by Sebastian Redl · 15 years ago
  74. 7d384dd Split LookupResult into its own header. by John McCall · 15 years ago
  75. 7ba107a Incremental progress on using declarations. Split UnresolvedUsingDecl into by John McCall · 15 years ago
  76. 48c32a7 Implement template instantiation for using directives, which is dead simple. by Douglas Gregor · 15 years ago
  77. 9488ea1 Instead of hanging a using declaration's target decls directly off the using by John McCall · 15 years ago
  78. a24dc2e Carry lookup configuration throughout lookup on the LookupResult. Give by John McCall · 15 years ago
  79. 66724ea If we attempt to add a constructor template specialization that looks by Douglas Gregor · 15 years ago
  80. 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
  81. cad84b7 A constructor template cannot be instantiated to a copy by Douglas Gregor · 15 years ago
  82. f35f828 Improve diagnostics when a default template argument does not match by Douglas Gregor · 15 years ago
  83. 9148c3f Before checking a template template argument against its corresponding by Douglas Gregor · 15 years ago
  84. 9106ef7 Instantiation of template template parameters for nested templates, e.g., by Douglas Gregor · 15 years ago
  85. 0f8716b Improve instantiation of default template arguments for nested by Douglas Gregor · 15 years ago
  86. e48319a When transforming an InitListExpr, if we already computed a non-dependent type for the InitListExpr, keep it by Douglas Gregor · 15 years ago
  87. bb4a33c Add hack to make the given testcase work. As far as I can tell, this change is by Eli Friedman · 15 years ago
  88. 42dddbe Don't reprocess non-dependent initializers of non-dependent VarDecls. Fixes PR5426. by Sebastian Redl · 15 years ago
  89. d8fe2d5 When instantiating a field decl, make sure to clone its attributes. With this change FileCheck no longer crashes when it's run without any arguments. by Anders Carlsson · 15 years ago
  90. cf3293e When determining whether a reference to a static data member is an by Douglas Gregor · 15 years ago
  91. 550d9b2 Implement "incremental" template instantiation for non-type template by Douglas Gregor · 15 years ago
  92. 259571e When a friend is declared in a dependent context, don't even try to by Douglas Gregor · 15 years ago
  93. e8c01bd Instantiate class template friends better; fixes PR5332. by Douglas Gregor · 15 years ago
  94. 833ca99 Track source information for template arguments and template specialization by John McCall · 15 years ago
  95. ed9c0f9 Implement support for semantic checking and template instantiation of by Douglas Gregor · 15 years ago
  96. 7ced9c8 Introduce FunctionDecl::isInlined() to tell whether a function should by Douglas Gregor · 15 years ago
  97. 0130f3c Rename FunctionDecl::isInline/setInline to by Douglas Gregor · 15 years ago
  98. 3b846b6 Explicit instantiation suppresses the instantiation of non-inline by Douglas Gregor · 15 years ago
  99. 0d03514 An explicit instantiation definition only instantiations those class by Douglas Gregor · 15 years ago
  100. ba6a9bd Preserve type source information in TypedefDecls. Preserve it across by John McCall · 15 years ago