1. 27cac99 Clean up the diagnostic complaining about the element type of a vector by Douglas Gregor · 14 years ago
  2. 9fde9c4 tests: Use %clangxx when using driver for C++, in case C++ support is disabled. by Daniel Dunbar · 14 years ago
  3. 4ced79f Implement dependent alignment attribute support. This is a bit gross given the by Chandler Carruth · 14 years ago
  4. 83c9abc Apply array-to-pointer decay when instantiating a MemberExpr. Fixes by Douglas Gregor · 14 years ago
  5. c070cc6 Given Decl::isUsed() a flag indicating when to consider the "used" by Douglas Gregor · 14 years ago
  6. e2872d0 When pushing a copy of the TypeLoc information for a dependent by Douglas Gregor · 14 years ago
  7. d6ab232 When we see a 'template' disambiguator that marks the next identifier by Douglas Gregor · 14 years ago
  8. 1a15dae Fix the recently-added warning about 'typename' and 'template' by Douglas Gregor · 14 years ago
  9. 3e1274f Canonicalize template template parameters when canonicalizing a by Douglas Gregor · 14 years ago
  10. d27e50c Don't poke at an undefined class type of a field. Fixes PR7355. by Douglas Gregor · 14 years ago
  11. 3956b1a If a non-dependent base class initializer fails to match any direct or by Douglas Gregor · 14 years ago
  12. 732281d Warn when a 'typename' or a 'template' keyword refers to a by Douglas Gregor · 14 years ago
  13. 24da709 Provide an Objective C mangling for wchar_t. Patch by Nico Weber! by John McCall · 14 years ago
  14. 9f716e4 When we've parsed a nested-name-specifier in a member access by Douglas Gregor · 14 years ago
  15. 5613876 Require a complete type when performing the qualified lookup during by John McCall · 14 years ago
  16. ff2e4f4 When transforming a C++ "new" expression's constructor arguments, drop by Douglas Gregor · 14 years ago
  17. ceafbde A type- or value-dependent expression cannot use bitfield by Douglas Gregor · 14 years ago
  18. fb2db46 Don't look for a destructor in a dependent type. Fixes PR7198. by Douglas Gregor · 14 years ago
  19. 0fddb97 Implement support for variable length arrays in C++. VLAs are limited by Douglas Gregor · 14 years ago
  20. d5ab9b0 Improve recovery when we see a dependent template name that is missing by Douglas Gregor · 14 years ago
  21. 1fd6d44 Improve parser recovery when we encounter a dependent template name by Douglas Gregor · 14 years ago
  22. b212d9a When instantiating a function declaration within a function template, by Douglas Gregor · 14 years ago
  23. 9901c57 When instantiating anonymous structs/unions within a function, make by Douglas Gregor · 14 years ago
  24. 4469e8a Revert r104106; it's breaking linking of Boost.Serialization. by Douglas Gregor · 14 years ago
  25. a89064a Profile type-dependent uses of overloaded operators in C++ the same by Douglas Gregor · 14 years ago
  26. 7d2bcc7 Teach clang to instantiate attributes on more declarations. Fixes PR7102. by Douglas Gregor · 14 years ago
  27. ac06a0e Protect isIntegerConstantExpr from seeing type- or value-dependent by Douglas Gregor · 14 years ago
  28. a6b0907 Instantiate attributes on typedefs. This is a quick fix for PR7148, by Douglas Gregor · 14 years ago
  29. 00b4b03 Make sure to search semantic scopes and appropriate template-parameter by Douglas Gregor · 14 years ago
  30. 6fb745b Rework when and how vtables are emitted, by tracking where vtables are by Douglas Gregor · 14 years ago
  31. 9679caf Whenever we instantiate a function definition or class, enter a new by Douglas Gregor · 14 years ago
  32. 380c213 Speculatively revert r103497, "Do not mark the virtual members of an by Daniel Dunbar · 14 years ago
  33. bbbe074 Do not mark the virtual members of an implicitly-instantiated class as by Douglas Gregor · 14 years ago
  34. 2166beb The C++98/03 standard is disturbingly silent about out-of-scope by Douglas Gregor · 14 years ago
  35. 85bcd99 Static data members intialized in-class that have constant values are by Douglas Gregor · 14 years ago
  36. bb6e73f A DeclRefExpr that refers to a member function or a static data member by Douglas Gregor · 14 years ago
  37. 444eaa8 Add a test for a subtle instantiation pattern that showed up within a Boost by Chandler Carruth · 14 years ago
  38. 5764f61 Improve our handling of the -Wunused-variable warning in templates. In by Douglas Gregor · 14 years ago
  39. eaa18e4 When instantiating statements that involve conditions (if, while, do, by Douglas Gregor · 14 years ago
  40. ff5adac Record template argument deduction failures for member function by Douglas Gregor · 14 years ago
  41. ec20f46 When printing an overload candidate that failed due to SFINAE, print a by Douglas Gregor · 14 years ago
  42. f1a8445 Improve overload-candidate diagnostic for a function template that by Douglas Gregor · 14 years ago
  43. a933319 When printing a non-viable overload candidate that failed due to by Douglas Gregor · 14 years ago
  44. b4eeaff When we encounter a non-dependent type during template instantiation, by Douglas Gregor · 14 years ago
  45. 6b6d01f Reapply the reference-binding patch applied below, along with a fix to by Douglas Gregor · 14 years ago
  46. 44c9806 Revert r103220. It seems to be breaking self-host by Douglas Gregor · 14 years ago
  47. abfe192 When determining whether the two types involved in reference binding by Douglas Gregor · 14 years ago
  48. 13c8577 Partial and full specializations of a class template may have a by Douglas Gregor · 14 years ago
  49. 0278e12 Support for 'template' as a disambiguator (PR7030) by Douglas Gregor · 14 years ago
  50. 5f970ee When instantiating a function that was declared via a typedef, e.g., by Douglas Gregor · 14 years ago
  51. e7089b0 When computing the template arguments for the instantiation of a by Douglas Gregor · 14 years ago
  52. f7d72f5 When instantiating a function-local variable definition, introduce the by Douglas Gregor · 14 years ago
  53. 8fc6d23 It's okay to reference an enum in a template definition, even though by Douglas Gregor · 14 years ago
  54. 6920cdc When instantiating a member function declared via a typedef, don't try by Douglas Gregor · 14 years ago
  55. 06a9f36 Complete reimplementation of the synthesis for implicitly-defined copy by Douglas Gregor · 14 years ago
  56. c0c8300 After substituting a template argument for a non-type template by Douglas Gregor · 14 years ago
  57. 895162d Clean up our handling of local instantiation scopes, which keep track by Douglas Gregor · 14 years ago
  58. 9ffce21 When we start the definition of a class template, set the by Douglas Gregor · 14 years ago
  59. 63b4385 Rebuild the nested name specifiers in member-pointer declarator chunks when by John McCall · 14 years ago
  60. 77e2c67 It turns out that we *can* end up having to display template argument by Douglas Gregor · 14 years ago
  61. 29d2fd5 Fix template instantiation for __builtin_offfsetof expressions that refer to members of anonymous structs/unions by Douglas Gregor · 14 years ago
  62. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 14 years ago
  63. e6ec5c4 When the qualifier of a id-expression is non-dependent but not by Douglas Gregor · 14 years ago
  64. d4598a2 When instantiating a function template specialization following by Douglas Gregor · 14 years ago
  65. 66c4515 When instantiating UnresolvedLookupExpr and UnresolvedMemberExpr by Douglas Gregor · 14 years ago
  66. 110acc1 Improve the diagnostic you get when making a qualified member access by John McCall · 14 years ago
  67. 31f17ec Make the InjectedClassNameType the canonical type of the current instantiation by John McCall · 14 years ago
  68. 087fb7d Ensure that we have completed a type before attempting initialization by Douglas Gregor · 14 years ago
  69. f86fcb3 When we attempt to create a temporary object of class type, be sure by Douglas Gregor · 14 years ago
  70. 77c13e0 When we take the address of a declaration to bind it to a non-type by Douglas Gregor · 14 years ago
  71. c70e93c Tweak test case slightly by Douglas Gregor · 14 years ago
  72. 48c89f4 Be more careful around dependent nested-name-specifiers, complaining by Douglas Gregor · 14 years ago
  73. d57a38e When instantiating a typedef of an anonymous tag type, note in the tag by Douglas Gregor · 14 years ago
  74. 20b3c9d Strip cv-qualifiers when building C++ constructor and destructor names. by Douglas Gregor · 14 years ago
  75. a41a8c5 Whenever we complain about a failed initialization of a function or by Douglas Gregor · 14 years ago
  76. 3fb53bd Reword the note we emit when suppressing template instantiation contexts, per John's advice by Douglas Gregor · 14 years ago
  77. 575cf37 Introduce a limit on the depth of the template instantiation backtrace by Douglas Gregor · 14 years ago
  78. 3fbaf3e Improve our handling of user-defined conversions as part of overload by Douglas Gregor · 14 years ago
  79. d6e44a3 Collapse the three separate initialization paths in by Douglas Gregor · 14 years ago
  80. 1a8cf73 Always diagnose and complain about problems in by Douglas Gregor · 14 years ago
  81. f19de1c Mark a function declaration invalid if any of its parameter declarations by John McCall · 14 years ago
  82. 57265e3 Fix a crash-on-invalid involving name lookup of tag names, where we by Douglas Gregor · 14 years ago
  83. cb27b0f Be sure to instantiate the parameters of a function, even when the by Douglas Gregor · 14 years ago
  84. 59fc269 When a member pointer is dereferenced, the class it points into must be complete. Enforce this. by Sebastian Redl · 14 years ago
  85. d6ca8da Diagnose misordered initializers in constructor templates immediately instead of by John McCall · 14 years ago
  86. 7002f4c Turn access control on by default in -cc1. by John McCall · 14 years ago
  87. d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 14 years ago
  88. cb821d0 Downgrade the "declaration does not declare anything" error to a by Douglas Gregor · 14 years ago
  89. c173be2 Explain that a template needs arguments to make it into a type, for by Jeffrey Yasskin · 14 years ago
  90. 9ab1454 Make CXXScopeSpec invalid when incomplete, and propagate that into any by Jeffrey Yasskin · 14 years ago
  91. db88d8a When a template (without arguments) is passed as a template type by Jeffrey Yasskin · 14 years ago
  92. edc2877 Fix some redundant errors by changing CXXScopeSpec::isSet calls into by Jeffrey Yasskin · 14 years ago
  93. bcc12fd If a constructor is a dependent context, just set the base and member initializers as they are written. Fixes a bug where we wouldn't show initialization order warnings when instantiating. by Anders Carlsson · 14 years ago
  94. b7a0926 Overhaul checking of non-type template arguments that should refer to by Douglas Gregor · 14 years ago
  95. 1eabb7d Improve diagnostics when an elaborated-type-specifer containing a by Douglas Gregor · 14 years ago
  96. 4033642 Change the representation of dependent elaborated-type-specifiers by Douglas Gregor · 14 years ago
  97. a3ce8ae Re-bind non-dependent CXXTemporaryObjectExpr nodes as temporaries when by Chandler Carruth · 14 years ago
  98. 5e40291 Improve diagnostics when printing a template instantiation backtrace by Douglas Gregor · 14 years ago
  99. 02024a9 After performing template argument deduction for a function template, by Douglas Gregor · 14 years ago
  100. 2243288 Properly account for redeclarations when explicitly instantiating class templates. by John McCall · 14 years ago