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