1. c7ad381 Add the ns_consumes_self, ns_consumed, cf_consumed, and ns_returns_autoreleased by John McCall · 14 years ago
  2. 16cf8f5 Downgrade the error about rvalue references to an extension warning by Douglas Gregor · 14 years ago
  3. 14429b9 [analyzer] Handle the dot syntax for properties in the ExprEngine. by Argyrios Kyrtzidis · 14 years ago
  4. 5286e2d [analyzer] Introduce ExprEngine::VisitObjCMessage for handling general ObjCMessages (both message expressions and property access) by Argyrios Kyrtzidis · 14 years ago
  5. 432424d [analyzer] Introduce ObjCMessage which represents both explicit ObjC message expressions and implicit by Argyrios Kyrtzidis · 14 years ago
  6. 5505c72 Disallow function template partial specializations, from Hans by Douglas Gregor · 14 years ago
  7. cb88a1f Use attributes for all the override control specifiers. by Anders Carlsson · 14 years ago
  8. 9ff2b13 Use CharUnits for the offset amount of RegionRawOffset. by Ken Dyck · 14 years ago
  9. 15e14a2 Get rid of [[hiding]], [[override]] and [[base_check]]. by Anders Carlsson · 14 years ago
  10. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 14 years ago
  11. 3176cca Add support for the --noexecstack option. Fixes PR8762. by Rafael Espindola · 14 years ago
  12. e00909a Tweak diagnostic: by Ted Kremenek · 14 years ago
  13. ce93a7c Accept the C++0x override control keywords as an extension in C++98. This is OK since the new syntax is unambiguous and can't be confused with C++98 syntax. If anyone disagrees, please shout! by Anders Carlsson · 14 years ago
  14. dfc2f10 Mark classes as final or explicit. Diagnose when a class marked 'final' is used as a base. by Anders Carlsson · 14 years ago
  15. b76cc4d Add final/explicit getters and setters to CXXRecordDecl. by Anders Carlsson · 14 years ago
  16. cc54d59 Parse class-virt-specifier-seqs. by Anders Carlsson · 14 years ago
  17. 46127a9 More work on ClassVirtSpecifiers. by Anders Carlsson · 14 years ago
  18. c46bb7d Start stubbing out a ClassVirtSpecifiers class. by Anders Carlsson · 14 years ago
  19. f1602a5 A member function template cannot be virtual. by Anders Carlsson · 14 years ago
  20. 07f402c Generalize the NRVO move-construction-based initialization routine. No functionality change by Douglas Gregor · 14 years ago
  21. fbb178a Add basic fixits for -Wuninitialized-experimental by Ted Kremenek · 14 years ago
  22. 94b1b4d Enhance -Wuninitialized-experimental diagnostics by Ted Kremenek · 14 years ago
  23. cc15f01 Implement the preference for move-construction over copy-construction by Douglas Gregor · 14 years ago
  24. f5d8f46 Promote the static getNRVOCandidate() function, which computed the by Douglas Gregor · 14 years ago
  25. c80e811 Sema: process non-inheritable attributes on function declarations early by Peter Collingbourne · 14 years ago
  26. 6070039 Sema: support for processing non-inheritable declaration attributes early by Peter Collingbourne · 14 years ago
  27. a97d70b Generalise support for non-inheritable attributes by Peter Collingbourne · 14 years ago
  28. fb5d7ef Improve the diagnostic that complains about binding an rvalue by Douglas Gregor · 14 years ago
  29. 2e1c730 Diagnose when a virtual member function marked final is overridden. by Anders Carlsson · 14 years ago
  30. ba4f5d5 Fix the computation of alignment for fields of packed+aligned structs. by John McCall · 14 years ago
  31. 4ebf160 Make CheckOverrideControl a member of Sema. by Anders Carlsson · 14 years ago
  32. 9e682d9 Diagnose virtual member functions marked override but not overriding any virtual member functions. by Anders Carlsson · 14 years ago
  33. c0534b6 Add IsMarkedOverride and IsMarkedFinal flags to FunctionDecl (to be used by CXXRecordDecl). by Anders Carlsson · 14 years ago
  34. 98367f0 Change the parser error to reflect that virt-specifiers are allowed on any class member. by Anders Carlsson · 14 years ago
  35. aae5af2 Only allow virtual member functions to be marked 'override' and 'final'. by Anders Carlsson · 14 years ago
  36. 69a8735 Pass the VirtSpecifiers along to Sema::ActOnCXXMemberDeclarator. by Anders Carlsson · 14 years ago
  37. 7eeb4ec Lazily initialize the 'final' and 'override' contextual keywords as suggested by Doug. by Anders Carlsson · 14 years ago
  38. 3dbdb58 Add CharUnits::RoundUpToAlignment() to simplify rounding in character units. by Ken Dyck · 14 years ago
  39. 83eecbe When building a user-defined conversion sequence, keep track of the by Douglas Gregor · 14 years ago
  40. f2ae526 Sema::BuildCXXMemberCallExpr() can fail due to access or ambiguities, by Douglas Gregor · 14 years ago
  41. dfc331e Explicitly track the number of call arguments provided when performing by Douglas Gregor · 14 years ago
  42. 4c9131a Variadic templates are fully implemented. by Douglas Gregor · 14 years ago
  43. 5ce5f52 Downgrade the "variadic templates are a C++0x feature" error to an by Douglas Gregor · 14 years ago
  44. d967e31 Refactor the dependence computation for DeclRefExpr so that we can by Douglas Gregor · 14 years ago
  45. a779d9c Implement basic support for the use of variadic templates and blocks by Douglas Gregor · 14 years ago
  46. 6952f1e Implement support for non-type template parameter packs whose type is by Douglas Gregor · 14 years ago
  47. 92c3a04 Warn about the use of unparenthesized |= in conditionals (which may be by Douglas Gregor · 14 years ago
  48. 2998d6b When building the copy expression for a __block variable, make sure by John McCall · 14 years ago
  49. 3b65751 Change the canonical representation of array types to store qualifiers on the by John McCall · 14 years ago
  50. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  51. 69fc1b3 Add a unary minus operator. by Ken Dyck · 14 years ago
  52. 0b53cf8 Don't silently drop warning flags passed in to by Douglas Gregor · 14 years ago
  53. ce88903 Fix some unnecessarily complicated code for canonicalizing variably-modified by John McCall · 14 years ago
  54. 62c28c8 Generalize some operations on qualifiers. QualType::getQualifiers() and by John McCall · 14 years ago
  55. dbee341 Add support for explicit constructor calls in Microsoft mode. For example: by Francois Pichet · 14 years ago
  56. d8868a6 Introduce the notion of a "minimal" import of ASTs, to better support LLDB. by Douglas Gregor · 14 years ago
  57. dec0984 Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and by Jeffrey Yasskin · 14 years ago
  58. b918d0f Convert "#pragma unused(...)" into tokens for the parser. by Argyrios Kyrtzidis · 14 years ago
  59. b971dbd Change ParseOptionalCXX0XVirtSpecifierSeq to take a VirtSpecifiers struct. by Anders Carlsson · 14 years ago
  60. 77a8184 Revert r123600. by Francois Pichet · 14 years ago
  61. 1f3b6fd Begin work on supporting "N3206: Override control: Eliminating Attributes", from by Anders Carlsson · 14 years ago
  62. 04eeba4 Add AnalysisContext::dumpCFG. by Anders Carlsson · 14 years ago
  63. e7108ab Downgrade ext_enumerator_too_large from ExtWarn to Extension in Microsoft mode. Otherwise you can warnings flooding trying to selfhost clang with fms-extensions because of "unsigned int" -> "signed int" enumerator conversion. by Francois Pichet · 14 years ago
  64. 2d75bbd Emit an extension diagnostic for C99 designated initializers that appear in C++ code by Douglas Gregor · 14 years ago
  65. eb6f5dc Add toCharUnitsInBits() to simplify the many calls to CharUnits::fromQuantity() of the form CharUnits::fromQuantity(bitSize, Context.getCharWidth()). by Ken Dyck · 14 years ago
  66. 1aee05d Introduce a new kind of TemplateName that captures a substituted by Douglas Gregor · 14 years ago
  67. 610068c Add initial prototype for implementation of by Ted Kremenek · 14 years ago
  68. 200fbc8 Add const version if CFG::isBlkExpr(). by Ted Kremenek · 14 years ago
  69. 9c34ee6 Tweak the storage mechanism for a set of overloaded template names in by Douglas Gregor · 14 years ago
  70. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  71. 2be29f4 Teach template template argument pack expansions to keep track of the by Douglas Gregor · 14 years ago
  72. 6a24bfd Handle substitutions into function parameter packs whose patterns by Douglas Gregor · 14 years ago
  73. 67fd125 Teach PackExpansionExpr to keep track of the number of pack expansions by Douglas Gregor · 14 years ago
  74. 3efd52c Properly propagate #pragma diagnostic mappings from PCH but not command-line warning flags. by Argyrios Kyrtzidis · 14 years ago
  75. db0594b Rename 'RemoveDeadBindings()' to 'removeDeadBindings()' by Ted Kremenek · 14 years ago
  76. 2ccf047 Rename 'EnterStackFrame()' to 'enterStackFrame()'. by Ted Kremenek · 14 years ago
  77. cded4f6 Keep track of the number of expansions to be produced from a type pack by Douglas Gregor · 14 years ago
  78. c3069d6 Start implementing support for substitution into pack expansions that by Douglas Gregor · 14 years ago
  79. 852f65b Unbreak the MSVC build. by Francois Pichet · 14 years ago
  80. 1411047 Move name mangling support from CodeGen to AST. In the by Peter Collingbourne · 14 years ago
  81. d074441 Support inlining base initializers. We still haven't got it completely right, by Zhongxing Xu · 14 years ago
  82. bda1efd Add comments. by Zhongxing Xu · 14 years ago
  83. b485726 Rename 'HasGeneratedNode' to 'hasGeneratedNode' by Ted Kremenek · 14 years ago
  84. 4bac726 Remove CheckerContext's dependence on setting by Ted Kremenek · 14 years ago
  85. 1d5d0b9 Add the location of the right parenthesis of a C++ named cast by Douglas Gregor · 14 years ago
  86. 2fc1bb7 Teach TreeTransform how to transform a pack expansion type into by Douglas Gregor · 14 years ago
  87. 4ba2a17 PR3558: mark "logically const" accessor methods in ASTContext as const, by Jay Foad · 14 years ago
  88. 5aff5e3 Add cast expr kinds to CheckerVisitor.def. by Zhongxing Xu · 14 years ago
  89. ae278a3 Slight bugfix to the attribute-distribution logic for GC attributes. by John McCall · 14 years ago
  90. 203e6a3 Add TemplateArgument::CreatePackCopy() to create a new parameter pack by Douglas Gregor · 14 years ago
  91. bc6f0da Add back 122079 so we can ignore the argument some more. by Eric Christopher · 14 years ago
  92. 6547884 [analyzer] Support post-visiting ObjCIvarRefExprs for checkers. by Argyrios Kyrtzidis · 14 years ago
  93. 5078d46 [analyzer] Add 'bool ignorePrefix' parameter to cocoa::deriveNamingConvention to control whether by Argyrios Kyrtzidis · 14 years ago
  94. f7fbbda [analyzer] Add 'isLoad' parameter in Checker::visitLocation() to conveniently distinguish between loads/stores. by Argyrios Kyrtzidis · 14 years ago
  95. 5c7bf42 Implement C++ [temp.func.order]p5 more directly, by passing down the by Douglas Gregor · 14 years ago
  96. b6a2b08 Remove ProgramPoint parameter from GenericNodeBuilder::generateNode(). by Ted Kremenek · 14 years ago
  97. 2b57aef Added warning about invalid register specification for local variables. by Abramo Bagnara · 14 years ago
  98. 27c54e5 Rework ExprEngine::processCFGBlockEntrance() by Ted Kremenek · 14 years ago
  99. 7771406 Remove several silly methods from ento::CoreEngine by Ted Kremenek · 14 years ago
  100. 21371ea When mapping from a function parameter pack to the set of function by Douglas Gregor · 14 years ago