1. a77eaa9 Make sure that we don't visit redeclarations of nested classes while by Douglas Gregor · 14 years ago
  2. c1c9df7 C++ [namespace.memdef]p3 only applies when the friend is not named via by Douglas Gregor · 14 years ago
  3. b6eee07 Bail out early to avoid comparing the internals of two conversion sequences of by Benjamin Kramer · 14 years ago
  4. 66821b5 When performing reference initialization for the purposes of overload by Douglas Gregor · 14 years ago
  5. 9dc58bb Binding a reference to an rvalue is a direct binding in C++0x but not in C++03. by Douglas Gregor · 14 years ago
  6. 630eb01 Fix the access checking of function and function template argument types, by Chandler Carruth · 14 years ago
  7. 2559a70 When checking the copy constructor for the optional copy during a by Douglas Gregor · 14 years ago
  8. 523d46a In C++98/03, when binding a reference to an rvalue of by Douglas Gregor · 14 years ago
  9. 422bae7 Allow the 'ibaction' attribute to be attached to method declarations (and not issue a warning). by Ted Kremenek · 14 years ago
  10. 153b3ba Do not consider explicit constructors when performing a copy to a by Douglas Gregor · 14 years ago
  11. 3fbaf3e Improve our handling of user-defined conversions as part of overload by Douglas Gregor · 14 years ago
  12. 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 14 years ago
  13. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 14 years ago
  14. 691ebc3 Consolidate most of the integer constant expression builtin requirement by Eric Christopher · 14 years ago
  15. 2b334bb make our existing "switch on bool" warning work for C. Since by Chris Lattner · 14 years ago
  16. ca7eaee If a non-noreturn virtual member function is guaranteed not to return, by Douglas Gregor · 14 years ago
  17. 8f00dcf Switch Sema::FindCompositePointerType() over to InitializationSequence. by Douglas Gregor · 14 years ago
  18. 575c63a Move Sema::PerformImplicitConversion over to where Sema::TryImplicitConversion is, for my own sanity. No functionality change by Douglas Gregor · 14 years ago
  19. ba70ab6 Make Sema::BuildCXXCastArgument static, since it now only has one caller. No functionality change by Douglas Gregor · 14 years ago
  20. d6e44a3 Collapse the three separate initialization paths in by Douglas Gregor · 14 years ago
  21. f0e43e5 Switch the checking of implicit casts for static_cast, C-style, and by Douglas Gregor · 14 years ago
  22. 74e386e Kill ForceRValue once and for all by Douglas Gregor · 14 years ago
  23. b7f9e6a Eliminate the ForceRValue parameter from TryCopyInitialization. by Douglas Gregor · 14 years ago
  24. 74eb658 Move Sema::TryCopyInitialization into a static function in by Douglas Gregor · 14 years ago
  25. 23ef6c0 Eliminate ForceRValue parameters from reference binding. Did I mention by Douglas Gregor · 14 years ago
  26. 1deea66 Silence warning. by Benjamin Kramer · 14 years ago
  27. c27d6c5 Eliminate the ForceRValue parameter to Sema::AddOverloadCandidate by Douglas Gregor · 14 years ago
  28. 7ec7752 Eliminate the ForceRValue parameter from most of Sema's Add*Candidate functions. by Douglas Gregor · 14 years ago
  29. 5447a8d Eliminate the ForceRValue parameter from Sema::IsUserDefinedConversion. It's not the way we're going to handle this. by Douglas Gregor · 14 years ago
  30. 471e2ce Eliminate the default value for the UserCast parameter of Sema::IsUserDefinedConversion. No functionality change by Douglas Gregor · 14 years ago
  31. 871f439 Eliminate the Elidable parameter to PerformImplicitConversion; we don't need it. by Douglas Gregor · 14 years ago
  32. 72468ec Start working on handling wide bitfields in C++ by Anders Carlsson · 14 years ago
  33. ccfa963 Expand the argument diagnostics for too many arguments and give by Eric Christopher · 14 years ago
  34. d77b9a2 Expand argument diagnostic for too few arguments to give the number by Eric Christopher · 14 years ago
  35. c0b3964 Audit uses of Sema::LookupSingleName for those lookups that are by Douglas Gregor · 14 years ago
  36. c83c687 Feed proper source-location information into Sema::LookupSingleResult, by Douglas Gregor · 14 years ago
  37. c75d6cc Improve the bit-field too wide error message. by Anders Carlsson · 14 years ago
  38. bf422f9 Diagnose attempts to throw an abstract class type. by Douglas Gregor · 14 years ago
  39. af68d4e Fix a few cases where enum constant handling was using by Douglas Gregor · 14 years ago
  40. 325e593 Warn about non-aggregate classes with no user-declared constructors by Douglas Gregor · 14 years ago
  41. 1a8cf73 Always diagnose and complain about problems in by Douglas Gregor · 14 years ago
  42. 1aae80b Thread a Scope pointer into BuildRecoveryCallExpr to help typo by Douglas Gregor · 14 years ago
  43. aaf8716 Teach typo correction about various language keywords. We can't by Douglas Gregor · 14 years ago
  44. 931f98a Return the corrected DeclarationName from Sema::CorrectTypo rather by Douglas Gregor · 14 years ago
  45. 55b3884 When diagnosing suspicious precedence or assignments, move the fix-it by Douglas Gregor · 14 years ago
  46. 6be3cb8 remove some obsolete super-handling code that I forgot to zap. by Chris Lattner · 14 years ago
  47. 47bd543 Implement typo correction for Objective-C message sends when the by Douglas Gregor · 14 years ago
  48. f19de1c Mark a function declaration invalid if any of its parameter declarations by John McCall · 14 years ago
  49. 709210f Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance by Ted Kremenek · 14 years ago
  50. 77e8b11 Support befriending members of class template specializations. by John McCall · 14 years ago
  51. c034974 Twik to radar 7839485. Do not attach weak_import attribute to class by Fariborz Jahanian · 14 years ago
  52. a50d750 Turn off warning about weak_import attribute by Fariborz Jahanian · 14 years ago
  53. abe183d Refactor and simplify the computation of implicit conversion sequences by Douglas Gregor · 14 years ago
  54. aa0be17 When returning the result of a call to an object of class type, do not by Douglas Gregor · 14 years ago
  55. d1fed3e During referencing binding, only consider conversion functions for by Douglas Gregor · 14 years ago
  56. 3d04336 Allow classes to befriend implicitly-declared members. Fixes PR6207 for by John McCall · 14 years ago
  57. ba9d853 Parse constructor names in friend declarations. Part of the fix for PR6207. by John McCall · 14 years ago
  58. 9ea6397 Don't try to find a scope corresponding to the search DC for an unfound by John McCall · 14 years ago
  59. a3f8137 Diagnose declarations of conversion functions with declarators other than '()'. by John McCall · 14 years ago
  60. c0b53c2 Remove some dead FIXMEs by Douglas Gregor · 14 years ago
  61. c520c84 Implement C++ [over.ics.user]p3, which restricts the final conversion by Douglas Gregor · 14 years ago
  62. 05baacb Improve source-location information for C++ conversion functions, by by Douglas Gregor · 14 years ago
  63. 01e56ae Implement C++ [temp.local]p4, which specifies how we eliminate by Douglas Gregor · 14 years ago
  64. a7a98c9 fix PR6819 by Chris Lattner · 14 years ago
  65. 6275e0c When creating the implicitly-declared special member functions, be by Douglas Gregor · 14 years ago
  66. 3be1794 Issue warning when 'weak_import' attribute is applied on a class only by Fariborz Jahanian · 14 years ago
  67. 57265e3 Fix a crash-on-invalid involving name lookup of tag names, where we by Douglas Gregor · 14 years ago
  68. cb27b0f Be sure to instantiate the parameters of a function, even when the by Douglas Gregor · 14 years ago
  69. 966c78b change Scope::WithinElse to be a normal scope flag, widen the by Chris Lattner · 14 years ago
  70. 15faee1 Have the parser decide whether a message to super is a variable or by Chris Lattner · 14 years ago
  71. aec43db fix a fixme, stop evaluating getCurMethodDecl() repeatedly by Chris Lattner · 14 years ago
  72. 80638c5 Have the CXXBaseOrMemberInitializer keep track of whether an initializer initializes a virtual base or not. by Anders Carlsson · 14 years ago
  73. eb483eb fix PR6811 by not parsing 'super' as a magic expression in by Chris Lattner · 14 years ago
  74. b9d4fc1 actually the interface grossness in the previous patch was due to by Chris Lattner · 14 years ago
  75. 7f81652 factor the code that handles "expr.field" when expr is a by Chris Lattner · 14 years ago
  76. 0784fcd fix a problem causing us to lose the ''s around objc interface names by Chris Lattner · 14 years ago
  77. 59fc269 When a member pointer is dereferenced, the class it points into must be complete. Enforce this. by Sebastian Redl · 14 years ago
  78. 3c3ccdb Diagnose more cases of initializing distinct members of an anonymous union by John McCall · 14 years ago
  79. d6ca8da Diagnose misordered initializers in constructor templates immediately instead of by John McCall · 14 years ago
  80. 78713d8 When upgrading an Objective-C class from a forward declaration to a by Douglas Gregor · 14 years ago
  81. c42b652 Only complain about explicit instantiations following explicit by Douglas Gregor · 14 years ago
  82. 03a4bee Remove fixit for string literal comparison. Telling the user to use 'strcmp' is bad, and by Ted Kremenek · 14 years ago
  83. fd22544 Suppress access control diagnostics when looking up a base or member name by John McCall · 14 years ago
  84. 47268a3 Remove all "used" static functions *after* we have performed all of by Douglas Gregor · 14 years ago
  85. 6cd3b9f Instantiate default argument expressions even if their associated parameter by John McCall · 14 years ago
  86. 1a4221c Don't warn about unused static functions if they are marked with by Chris Lattner · 14 years ago
  87. 4ecb25f Fixes a regression caused by implementing cstyle methods for objc. by Fariborz Jahanian · 14 years ago
  88. d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 14 years ago
  89. cb821d0 Downgrade the "declaration does not declare anything" error to a by Douglas Gregor · 14 years ago
  90. 7732cc9 Implement method type encoding in the presense by Fariborz Jahanian · 14 years ago
  91. c173be2 Explain that a template needs arguments to make it into a type, for by Jeffrey Yasskin · 14 years ago
  92. ea7390c Set access properly on instantiated friend class template declarations. by John McCall · 14 years ago
  93. b7e5f14 Remove micro-optimization for not issueing CFG-based warnings for 'static inline' functions by Ted Kremenek · 14 years ago
  94. c53d0d7 Introduce an egregious hack to work around a bug in libstdc++ 4.2.x's by Douglas Gregor · 14 years ago
  95. 9ab1454 Make CXXScopeSpec invalid when incomplete, and propagate that into any by Jeffrey Yasskin · 14 years ago
  96. af2094e Implement dependent friend function template specializations. by John McCall · 14 years ago
  97. 2b60513 Removed unused object. by Ted Kremenek · 14 years ago
  98. b69eca5 Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-layouts a bit that Sema honors. by Daniel Dunbar · 14 years ago
  99. 4f4fd92 Patch to implement gcc's cstyle arguments in objc methods. wip. by Fariborz Jahanian · 14 years ago
  100. bb6fb46 Fix a (bogus) uninitialized-member-of-local warning. by John McCall · 14 years ago