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