aboutsummaryrefslogtreecommitdiff
path: root/lib/AST
AgeCommit message (Expand)Author
2009-11-18Incremental progress on using declarations. Split UnresolvedUsingDecl intoJohn McCall
2009-11-18Add ObjCClassDecl::getSourceRange().Ted Kremenek
2009-11-18Add SourceLocations to ObjCClassDecl for the class identifiers referenced by ...Ted Kremenek
2009-11-17Do not register ObjCInterfaceDecls implicitly created by @class in theTed Kremenek
2009-11-17Added block type introspection support.David Chisnall
2009-11-17Fix PR5531.Anders Carlsson
2009-11-17Instead of hanging a using declaration's target decls directly off the using John McCall
2009-11-17Unify the way destructor epilogues are generated for synthesized and regular ...Anders Carlsson
2009-11-17When querying type qualifiers on QualType via one of the "non-local"Douglas Gregor
2009-11-16First part of changes to eliminate problems with cv-qualifiers andDouglas Gregor
2009-11-16Add constant evaluation for comma operator with floating-point operand. FixesEli Friedman
2009-11-15Fix a missing include from r88876.Chandler Carruth
2009-11-15Add DeclarationName::dump().Anders Carlsson
2009-11-14When dumping implicit cast exprs, print out whether the cast is an lvalue cas...Anders Carlsson
2009-11-14Add an internal CreateRecordDecl that will create a CXXRecordDecl when compil...Anders Carlsson
2009-11-14If we attempt to add a constructor template specialization that looksDouglas Gregor
2009-11-13Revert r88718, which does NOT solve the constructor-template-as-copy-construc...Douglas Gregor
2009-11-13A constructor template cannot be instantiated to a copyDouglas Gregor
2009-11-13Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated.Daniel Dunbar
2009-11-12Add a CK_BaseToDerived cast kind.Anders Carlsson
2009-11-12When comparing template parameter lists, distinguish between three cases:Douglas Gregor
2009-11-12Improve source-location information for implicitly-generated member call expr...Douglas Gregor
2009-11-12Random const correctness, and incidentally use computeDeclContext when buildingJohn McCall
2009-11-11Template argument deduction for template template parameters. ThisDouglas Gregor
2009-11-11Fix speculative parsing of dependent template names inDouglas Gregor
2009-11-11Fixup spacing.Mike Stump
2009-11-11Introduce a new representation for template templateDouglas Gregor
2009-11-10Fix clang's use of DenseMap iterators after r86636 fixed their constness.Jeffrey Yasskin
2009-11-10Move all of the type-printing logic to its own C++ source fileDouglas Gregor
2009-11-09__uint128_t is indeed an unsigned integer type. Fixes PR5435.Anders Carlsson
2009-11-07Implement -Wconversion. Off by default, in the non-gcc group. There'sJohn McCall
2009-11-07Make sure isCopyAssignment is only true for actual copy assignment operators,Eli Friedman
2009-11-05Make ASTContext::getIntWidth return 1 for all boolean type variations, not ju...Sebastian Redl
2009-11-05Added support for static variables which requireFariborz Jahanian
2009-11-05Allow the element type of arrays to be incomplete in C++.Sebastian Redl
2009-11-05Refine layout for indirect virtual base classes.Mike Stump
2009-11-04Give DeclarationName's operator< a more predictable, useful orderingDouglas Gregor
2009-11-04Store the unresolved class type in MemberPointerType's Class field,Douglas Gregor
2009-11-04Implement support for parsing dependent template-ids that refer toDouglas Gregor
2009-11-03Refine volatile handling, specifically, we must have the canonicalMike Stump
2009-11-03silence a warning.Chris Lattner
2009-11-03Refine codegen for covariant thunks that return references.Mike Stump
2009-11-02Property declared in continuation class can only be used toFariborz Jahanian
2009-11-01When determining whether a reference to a static data member is anDouglas Gregor
2009-10-30Fix a crazy canonical-types bug because canonicalizing aDouglas Gregor
2009-10-30When looking for a copy-assignment operator to determine the cv-qualifiers on...Douglas Gregor
2009-10-30This patch computes composite type of two objective-c expressionsFariborz Jahanian
2009-10-30Add a CK_DerivedToBaseMemberPointer cast kind and use it in Sema (Still no co...Anders Carlsson
2009-10-29Fix one more bug with __builtin_object_size.Mike Stump
2009-10-29- Add/tweak some comments.Steve Naroff