1. f4d84b6 Improve diagnostics for missing members. This renames the err_typecheck_no_member to err_typecheck_no_member_deprecated. The idea is that err_typecheck_no_member_deprecated should be phased out and any call sites that reference it should call DiagnoseMissingMember instead. by Anders Carlsson · 15 years ago
  2. af496ac Unbreak tests. I'll look into why this is necessary later. by Eli Friedman · 15 years ago
  3. 31590f9 Fix the start source location for type-specs like long, short, etc. by Argyrios Kyrtzidis · 15 years ago
  4. c5573a8 Make instantiating initializers for classes with a dependent base type by Eli Friedman · 15 years ago
  5. e3a97db Make IRGen for initializing a member reference work correctly. by Eli Friedman · 15 years ago
  6. 35eda44 Add a workaround for decls that come from friend decls pointing to undeclared classes. by Anders Carlsson · 15 years ago
  7. 018e9fe In DeclPrinter, assert when asked to print AS_None. by Anders Carlsson · 15 years ago
  8. 383d298 Patch to ir-gen user-defined conversions used in expressions [12.3.2-p3] by Fariborz Jahanian · 15 years ago
  9. 595adc1 Set the access specifier for using decls. by Anders Carlsson · 15 years ago
  10. 0d8df78 Improve instantiation of UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  11. 3197659 Patch for code gen. for c-style cast which ends in by Fariborz Jahanian · 15 years ago
  12. d933a01 Get rid of mostly-unused, buggy method. by Eli Friedman · 15 years ago
  13. 52a575a Fix the breakage by handling indirect instantiations. This would be much by John McCall · 15 years ago
  14. 0902531 Instantiate member and base initializers. Patch by Anders Johnsen! (tweaked slightly by me) by Anders Carlsson · 15 years ago
  15. eab975d Fix a couple issues with parsing invalid nested-name-specifiers. by Eli Friedman · 15 years ago
  16. 5fee110 For consistency, just make friend declarations AS_public. by John McCall · 15 years ago
  17. f181d8a Ensure code generation for friend declarations in class templates. by John McCall · 15 years ago
  18. 9a5bca3 Refactor undefined argument checking into a Checker. by Zhongxing Xu · 15 years ago
  19. 8c57a66 Store the SourceLocation of right parentheses in member initializers. Patch by Anders Johnsen! by Anders Carlsson · 15 years ago
  20. 54f70e1 Don't assert that friend declarations must have access specifiers for now. by Anders Carlsson · 15 years ago
  21. 598da5b CreateDeclRefExprs that point to UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  22. 203cb71 Add another check for UnresolvedUsingDecl. by Anders Carlsson · 15 years ago
  23. 15a24e0 iGenerate vcalls as we build up the methods. WIP. by Mike Stump · 15 years ago
  24. fdc3919 Make sure we actually found a redeclaration before complaining about attributes added to a redeclaration in C++ by Douglas Gregor · 15 years ago
  25. 0d59292 Add printing of access specifiers to DeclPrinter. The formatting is pretty bad but it works :) by Anders Carlsson · 15 years ago
  26. ed65646 Remove #if 0'd code that is clearly not needed by Douglas Gregor · 15 years ago
  27. 7fe5d72 path to ir-gen 12.3.1 Conversion by constructor by Fariborz Jahanian · 15 years ago
  28. a5bf7f1 Don't crash when instantiating templates containing anonymous structs/unions by Douglas Gregor · 15 years ago
  29. 3cd4d1e Test instantiation of static data members that live within nested by Douglas Gregor · 15 years ago
  30. 5ec178f Fix and test template instantiation for nested member templates. by Douglas Gregor · 15 years ago
  31. 357bbd0 Tighten up the conversion from a single-level template argument list by Douglas Gregor · 15 years ago
  32. c18faf6 Remove the conversion from a multi-level template argument list back to a single template argument list. We no longer need this crutch by Douglas Gregor · 15 years ago
  33. d6350ae Implement template instantiation for member class templates. by Douglas Gregor · 15 years ago
  34. a834fb4 retain/release checker: [CIContext createCGImage...] and friends returned CF by Ted Kremenek · 15 years ago
  35. f53eaa5 Improve support for using decls in the decl printer. by Anders Carlsson · 15 years ago
  36. 36ef078 Check for UnresolvedUsingDecl when determining if a declaration is a redeclaration or not. by Anders Carlsson · 15 years ago
  37. 32844b3 patch to prevent crash in hopelessly incorrect method definition with labels. by Fariborz Jahanian · 15 years ago
  38. d110243 Collect multiple levels of template arguments into a new type, by Douglas Gregor · 15 years ago
  39. faccd72 Fix this for real. by Anders Carlsson · 15 years ago
  40. 83b534c Allow explicit ctors for casts. by Anders Carlsson · 15 years ago
  41. bbf306b When doing overload resolution, expressions that are value dependent but not type dependent and of integral type should not be treated as null pointer constants. by Anders Carlsson · 15 years ago
  42. 0897292 Pass InOverloadResolution all the way down to IsPointerConversion. by Anders Carlsson · 15 years ago
  43. 0dde18e Instantiate unresolved using declarations. by Anders Carlsson · 15 years ago
  44. 4fc7ab3 ir-gen related patch for type conversion by Fariborz Jahanian · 15 years ago
  45. 02cace7 Omnibus friend decl refactoring. Instead of cloning AST classes for friend by John McCall · 15 years ago
  46. 550b14b Create UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
  47. c72160b Factor declaration building out to Sema::BuildUsingDeclaration. by Anders Carlsson · 15 years ago
  48. 665b49c Check in UnresolvedUsingDecl. by Anders Carlsson · 15 years ago
  49. abd46e1 Use SymbolicRegion instead of CodeTextRegion for symbolic function by Ted Kremenek · 15 years ago
  50. 73b39cf More work on using declarations. by Anders Carlsson · 15 years ago
  51. cf9f921 Many improvements to using declarations. by Anders Carlsson · 15 years ago
  52. a818783 Use C++ style comments. by Ted Kremenek · 16 years ago
  53. 65a81a9 Implement: <rdar://problem/6337132> CWE-273: Failure to Check Whether Privileges by Ted Kremenek · 16 years ago
  54. 8a5ae24 When looking for overloaded member operators, make sure to instantiate by Douglas Gregor · 16 years ago
  55. e8d6d2b CFG construction: Abort CFG construction when processing a CompoundStmt if any by Ted Kremenek · 16 years ago
  56. 8e02934 Rename 'bindExpr' to 'BindExpr'. by Ted Kremenek · 16 years ago
  57. 6d2c657 Move the AnalysisContext* from GRState to Environment. by Ted Kremenek · 16 years ago
  58. 666479b Define _GNU_SOURCE in C++ mode so that clang works with GNU libstdc++. by Eli Friedman · 16 years ago
  59. a77a07e Clean up CodeGenFunction::EmitCastLValue to use the cast kind. Error by Eli Friedman · 16 years ago
  60. eaba1af Fix for PR4794 (instantiating friend class decl); this version shouldn't by Eli Friedman · 16 years ago
  61. 56bea43 Back out bad piece of r80272. Will look at fixing this a different way. by Eli Friedman · 16 years ago
  62. c5c54f2 PR4794: Make instantiating friend class decls not crash. by Eli Friedman · 16 years ago
  63. 7b361b5 Add an InOverloadResolution flag to TryCopyInitialization. by Anders Carlsson · 16 years ago
  64. 2de3ace Remove more default arguments. by Anders Carlsson · 16 years ago
  65. da7a18b Remove default arguments from TryImplicitConversion and fix a bug found in the process. by Anders Carlsson · 16 years ago
  66. d28b428 Remove default argument from TryCopyInitialization. by Anders Carlsson · 16 years ago
  67. 2974b5c Revert the flags change for now, I have a better idea for this. by Anders Carlsson · 16 years ago
  68. d60e105 Implement instantiation of the declarations of member function by Douglas Gregor · 16 years ago
  69. 1937738 Add a OverloadResolutionFlags and start converting some of the overload methods over to using it instead of bools arguments. by Anders Carlsson · 16 years ago
  70. c999496 Remove a unused member variable. Instead query the option from AnalysisManager. by Zhongxing Xu · 16 years ago
  71. 6dd38da When checking whether one declaration context encloses another, make sure to look at the primary contexts. Thanks to Eli for the test case by Douglas Gregor · 16 years ago
  72. 8d4c5ea Don't check member and base initializers if the constructor is dependent. by Anders Carlsson · 16 years ago
  73. 5c36fb2 Use early returns to avoid indentation. by Anders Carlsson · 16 years ago
  74. 2a16a13 Stub out an error so we don't crash. by Eli Friedman · 16 years ago
  75. e7624a7 Add a BuildCXXTemporaryObjectExpr and use it so default arguments will be instantiated correctly for temporary object expressions. by Anders Carlsson · 16 years ago
  76. bb60a50 In ActOnCXXTypeConstructExpr, check that the type is complete and non-abstract before creating any expressions. This assures that any templates are instantiated if necessary. by Anders Carlsson · 16 years ago
  77. 0fb0bc4 Simplify 'Environment' to contain only one map from 'const Stmt*' to SVals, greatly simplifying the logic of the analyzer in many places. We now only distinguish between block-level expressions and subexpressions in Environment::RemoveDeadBindings and GRState pretty-printing. by Ted Kremenek · 16 years ago
  78. a6ec7ad New RequireNonAbstractType function. by Anders Carlsson · 16 years ago
  79. b790661 Bye-bye old RequireCompleteType. by Anders Carlsson · 16 years ago
  80. 63bb7c2 Fixup codegen for static dispatch to a virtual function that was by Mike Stump · 16 years ago
  81. 64e690e ir-gen for type convesion of class objects. WIP. by Fariborz Jahanian · 16 years ago
  82. e9f8eb6 Make sure to bump the reference count of the last element in the ParenListExpr representing the direct initializer of a declaration by Douglas Gregor · 16 years ago
  83. c566423 Remove another unused argument. by Anders Carlsson · 16 years ago
  84. d497ba7 Remove the PrintType argument from RequireCompleteType. by Anders Carlsson · 16 years ago
  85. bd4c4ae When a member reference expression includes a qualifier on the member by Douglas Gregor · 16 years ago
  86. 91a0cc9 Add a RequireCompleteType variant that takes a PartialDiagnostic. The old RequireCompleteType now creates a PartialDiagnostic and calls the new function. by Anders Carlsson · 16 years ago
  87. 1feade8 Regularize the case and sort. by Mike Stump · 16 years ago
  88. 83ddad3 Implement support for C++ direct initializers that involve dependent by Douglas Gregor · 16 years ago
  89. be3289d More work for conversion functions. by Mike Stump · 16 years ago
  90. f0070db Implement virtual dispatch. :-) This is self-consistent with clang, by Mike Stump · 16 years ago
  91. 9099ff0 AST for conversion by conversion functions. WIP. by Fariborz Jahanian · 16 years ago
  92. d15d8c6 Make address-space qualification work correctly for compound literals. by Eli Friedman · 16 years ago
  93. 2cf738f More support for pseudo dtors. by Anders Carlsson · 16 years ago
  94. e9f4208 update to CXXFunctionalCastExpr to support ir-gen for by Fariborz Jahanian · 16 years ago
  95. db3a0f5 Make sure to compare primary declaration contexts when determining whether a declaration is in scope by Douglas Gregor · 16 years ago
  96. 42c39f3 When we know that we are parsing a class-name, implicitly construct a by Douglas Gregor · 16 years ago
  97. 8f28f99 Add Sema::BuildMemberReferenceExpr and have Sema::ActOnMemberReferenceExpr call it. by Anders Carlsson · 16 years ago
  98. 3aa4ca4 Address some of Doug's comments. by Anders Carlsson · 16 years ago
  99. c3384cb Fix for overloaded binary operators whose operands need implicit by Douglas Gregor · 16 years ago
  100. 47e1f7c Source location information for ? and : in a ConditionalOperator, from Enea Zaffanella by Douglas Gregor · 16 years ago