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-29 | Some refactoring of member access for | Fariborz Jahanian |
2009-07-29 | Check accessibility when converting object to the base | Fariborz Jahanian |
2009-07-29 | Patch to provide cast of objects in member access | Fariborz Jahanian |
2009-07-29 | [llvm up] | Douglas Gregor |
2009-07-29 | Fix <rdar://problem/7100524> regression: "error: incompatible operand types (... | Steve Naroff |
2009-07-29 | Incorporate feedback from Chris (on r76979). | Steve Naroff |
2009-07-29 | Make functional-style casts emit correct messages, and fix a crash-on-invalid. | Sebastian Redl |
2009-07-29 | BlockScopeInfo::hasPrototype was uninitialized. | Daniel Dunbar |
2009-07-28 | Add noreturn support for blocks. | Mike Stump |
2009-07-25 | Implement C++ semantics for C-style and functional-style casts. This regresse... | Sebastian Redl |
2009-07-24 | Template instantiation for static data members that are defined out-of-line. | Douglas Gregor |
2009-07-24 | Allow front-end 'isa' access on object's of type 'id'. | Steve Naroff |
2009-07-23 | Remove a bunch of FIXME's related to ObjC type checking. | Steve Naroff |
2009-07-22 | Fix test breakage. | Eli Friedman |
2009-07-22 | Slight code reorganization to allow instantiating post-inc/dec. | Eli Friedman |
2009-07-22 | Use isa instead of dyn_cast for conditionals. | Mike Stump |
2009-07-22 | Preserve address space information through member accesses, e.g., | Mon P Wang |
2009-07-21 | Remove the ObjCCategoryImpls vector from Sema class. | Argyrios Kyrtzidis |
2009-07-21 | Remove Sema::LookupObjCImplementation and replace it with just calling ObjCIn... | Argyrios Kyrtzidis |
2009-07-20 | 5 cleanups to ObjCObjectPointerType work: | Steve Naroff |
2009-07-18 | Don't add a SourceLocation for 'self' if it does not actually appears in the ... | 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 | Diagnose ++/-- op on objc pointers in | Fariborz Jahanian |
2009-07-16 | Remove ASTContext::isObjCObjectPointerType(). | Steve Naroff |
2009-07-16 | Avoid crashing for the enclosed test case. | Steve Naroff |
2009-07-15 | Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseu... | Steve Naroff |
2009-07-14 | Introduce Type::isAnyPointerType() and convert all clients (suggested by Chris). | Steve Naroff |
2009-07-13 | Remove superfluous call to getAsPointerType()... | Steve Naroff |
2009-07-13 | Sema::CheckAdditionOperands(): Use Type::getPointeeType() and remove PTy and ... | Steve Naroff |
2009-07-13 | - Improve comment for Type::getPointeeType(). | Steve Naroff |
2009-07-13 | Fix 5 issues from Chris's feedback on http://llvm.org/viewvc/llvm-project?vie... | Steve Naroff |
2009-07-11 | Fix warning when compiling with optimizations: | Ted Kremenek |
2009-07-10 | This patch includes a conceptually simple, but very intrusive/pervasive change. | Steve Naroff |
2009-07-09 | Store the isAddressOfOperand in the UnresolvedDeclRefExpr, so that we can pas... | Anders Carlsson |
2009-07-08 | It's not allowed to form member pointers to members that have reference type.... | Anders Carlsson |
2009-07-08 | Implement template argument deduction when taking the address of a | Douglas Gregor |
2009-07-08 | reimplement vector comparisons as [fi]cmp+sext instead of using v[if]cmp. | Chris Lattner |
2009-07-07 | Diagnose, and not crash, when taking address of property expression. | Fariborz Jahanian |
2009-07-06 | Fix a problem with false diagnostics when comparing distinct NULL pointer typ... | Douglas Gregor |
2009-07-01 | Rework Sema::CheckConditionalOperands(). No functionality change. | Steve Naroff |
2009-06-30 | When explicit template arguments are provided for a function call, | Douglas Gregor |
2009-06-30 | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor |
2009-06-30 | When recursively instantiating function templates, keep track of the | Douglas Gregor |
2009-06-30 | Refactor ActOnDeclarationNameExpr into a "parsing action" part and a | Douglas Gregor |