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