Age | Commit message (Expand) | Author |
2009-07-31 | Add CK_DerivedToBase and use it PerformObjectMemberConversion. | Anders Carlsson |
2009-07-31 | Add a CastKind enum to CastExpr. Right now it's not used for much but it will... | Anders Carlsson |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-25 | Implement C++ semantics for C-style and functional-style casts. This regresse... | Sebastian Redl |
2009-07-23 | Remove a bunch of FIXME's related to ObjC type checking. | Steve Naroff |
2009-07-18 | Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its p... | Argyrios Kyrtzidis |
2009-07-17 | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek |
2009-07-17 | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek |
2009-07-17 | Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). | Ted Kremenek |
2009-07-16 | Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. | Ted Kremenek |
2009-07-16 | Remove ASTContext::isObjCObjectPointerType(). | Steve Naroff |
2009-07-15 | Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseu... | Steve Naroff |
2009-07-14 | Basic support for C++0x unicode types. Support for literals will follow in a... | Alisdair Meredith |
2009-07-14 | For C++ overloaded operator calls, set the source location of the DeclRefExpr... | Argyrios Kyrtzidis |
2009-07-10 | This patch includes a conceptually simple, but very intrusive/pervasive change. | Steve Naroff |
2009-07-09 | Add test for C++ [over.over.]p1, the contexts in which one can take the addre... | Douglas Gregor |
2009-07-08 | Implement the simple form of overload resolution used when taking the | Douglas Gregor |
2009-07-08 | Implement template argument deduction when taking the address of a | Douglas Gregor |
2009-07-07 | Overload resolution prefers non-templates to templates | Douglas Gregor |
2009-06-30 | When explicit template arguments are provided for a function call, | Douglas Gregor |
2009-06-30 | De-ASTContext-ify DeclContext. | Argyrios Kyrtzidis |
2009-06-30 | Remove the ASTContext parameter from the attribute-related methods of Decl. | Argyrios Kyrtzidis |
2009-06-27 | Improve support for overloaded operator templates. | Douglas Gregor |
2009-06-25 | Improved semantic analysis and AST respresentation for function | Douglas Gregor |
2009-06-24 | Implement matching of function templates, so that one can declare overloaded ... | Douglas Gregor |
2009-06-19 | Keep track of when declarations are "used" according to C and | Douglas Gregor |
2009-06-18 | Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. | Douglas Gregor |
2009-05-21 | Avoid using the built-in type checker for assignment in C++ when classes are ... | Sebastian Redl |
2009-05-19 | Template instantiation for array subscript expressions. This was far | Douglas Gregor |
2009-05-16 | Reflow some comments. | Mike Stump |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |
2009-05-02 | When determining whether an expression refers to a bit-field, look | Douglas Gregor |
2009-05-01 | Get rid of the implicit deref call when calling member functions where the ba... | Anders Carlsson |
2009-04-29 | Implement semantic analysis for transparent unions. This is largely | Douglas Gregor |
2009-04-19 | Conditional operator C++ checking complete. What issues remain are in more ge... | Sebastian Redl |
2009-04-16 | Fix a crash bug when comparing overload quality of conversion operators with ... | Sebastian Redl |
2009-04-12 | Parse deleted member functions. Parsing member declarations goes through a di... | Sebastian Redl |
2009-04-12 | implement rdar://6780761, making sema reject some code that otherwise | Chris Lattner |
2009-04-09 | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor |
2009-03-29 | Hopefully fix the rval regressions. Thanks to Chris for pointing out that val... | Sebastian Redl |
2009-03-29 | Reintroduce r67870 (rval ref overloading), since I can't reproduce any test f... | Sebastian Redl |
2009-03-29 | QualType can go in SmallPtrSet now, simplify code that used to have | Chris Lattner |
2009-03-28 | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner |
2009-03-28 | Revert Sebastian's rvalue patch (r67870) since it caused test failures in | Anders Carlsson |
2009-03-27 | Better overload resolution for rvalue references. | Sebastian Redl |
2009-03-24 | Type::isObjectType now implements the (more sensible) C++ definition | Douglas Gregor |
2009-03-22 | Disallow catching exceptions by rvalue reference. | Sebastian Redl |
2009-03-16 | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl |
2009-03-13 | Implement template instantiation for the prefix unary operators. As | Douglas Gregor |
2009-03-13 | Refactor the way we handle operator overloading and template | Douglas Gregor |