| Commit message (Expand) | Author | Age | Files | Lines |
| * | minor cleanups and tidying, no functionality change. | Chris Lattner | 2008-11-18 | 1 | -68/+70 |
| * | implement a fixme by making warnings for ++/-- on non-modifiable-lvalues better. | Chris Lattner | 2008-11-18 | 1 | -7/+2 |
| * | factor some code out into a helper function | Chris Lattner | 2008-11-18 | 1 | -34/+48 |
| * | Implement effects of 'mutable', and a few comments from Chris on its parsing. | Sebastian Redl | 2008-11-17 | 1 | -0/+4 |
| * | Implement rdar://6319320: give a good diagnostic for cases where people | Chris Lattner | 2008-11-17 | 1 | -0/+4 |
| * | Fix <rdar://problem/6316324> [sema] spurious warning on comparison of qualifi... | Steve Naroff | 2008-11-17 | 1 | -1/+9 |
| * | Add a new expression node, CXXOperatorCallExpr, which expresses a | Douglas Gregor | 2008-11-14 | 1 | -6/+6 |
| * | Some cleanup for the implementation of built-in operator | Douglas Gregor | 2008-11-13 | 1 | -9/+4 |
| * | Implement support for operator overloading using candidate operator | Douglas Gregor | 2008-11-12 | 1 | -49/+87 |
| * | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl | 2008-11-11 | 1 | -30/+32 |
| * | Basic support for taking the address of an overloaded function | Douglas Gregor | 2008-11-10 | 1 | -1/+5 |
| * | Implement Sema support for C++ nested-name-specifiers. | Argyrios Kyrtzidis | 2008-11-08 | 1 | -2/+15 |
| * | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis | 2008-11-08 | 1 | -1/+2 |
| * | Initial, rudimentary implementation of operator overloading for binary | Douglas Gregor | 2008-11-06 | 1 | -35/+143 |
| * | Implement C++ copy-initialization for declarations. There is now some | Douglas Gregor | 2008-11-05 | 1 | -1/+2 |
| * | Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'.... | Douglas Gregor | 2008-11-04 | 1 | -1/+1 |
| * | Fix <rdar://problem/6339636> clang ObjC rewriter: Assertion failed: FileID-1 ... | Steve Naroff | 2008-11-03 | 1 | -1/+1 |
| * | Tweak Sema::CheckReferenceInit so that it (optionally) computes an | Douglas Gregor | 2008-10-29 | 1 | -1/+1 |
| * | Implement initialization of a reference (C++ [dcl.init.ref]) as part | Douglas Gregor | 2008-10-29 | 1 | -7/+4 |
| * | Rename ExplicitCCastExpr to CStyleCastExpr | Douglas Gregor | 2008-10-28 | 1 | -1/+1 |
| * | Improve our handling of (C++) references within Clang. Specifically: | Douglas Gregor | 2008-10-28 | 1 | -18/+24 |
| * | Refactor the expression class hierarchy for casts. Most importantly: | Douglas Gregor | 2008-10-27 | 1 | -1/+1 |
| * | Fix <rdar://problem/6315646> clang on xcode: error: invalid operands to binar... | Steve Naroff | 2008-10-27 | 1 | -5/+8 |
| * | Remember whether an initlist had a designator in the AST. | Chris Lattner | 2008-10-26 | 1 | -1/+3 |
| * | pass designators into sema. This completes parser-level designator | Chris Lattner | 2008-10-26 | 1 | -1/+3 |
| * | Don't give a default argument to ASTContext::getFunctionType for the TypeQual... | Argyrios Kyrtzidis | 2008-10-26 | 1 | -1/+1 |
| * | -Add support for cv-qualifiers after function declarators. | Argyrios Kyrtzidis | 2008-10-24 | 1 | -1/+3 |
| * | Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian... | Douglas Gregor | 2008-10-24 | 1 | -1/+1 |
| * | First non-embarrassing cut at checking for ambiguous derived-to-base | Douglas Gregor | 2008-10-24 | 1 | -9/+2 |
| * | Fix regression in comparison of qualified id; == operator was being | Daniel Dunbar | 2008-10-23 | 1 | -1/+3 |
| * | Fix <rdar://problem/6311947> clang on xcode (regression): error: use of undec... | Steve Naroff | 2008-10-22 | 1 | -2/+2 |
| * | Now that DeclRefExpr accepts a NamedDecl, use a DeclRefExpr for when a CXXFie... | Argyrios Kyrtzidis | 2008-10-22 | 1 | -4/+1 |
| * | Fix <rdar://problem/6257675> error: member reference base type ('NSUserDefaul... | Steve Naroff | 2008-10-22 | 1 | -0/+7 |
| * | Move Sema::GetNonReferenceType to QualType::getNonReferenceType and make it i... | Douglas Gregor | 2008-10-22 | 1 | -1/+1 |
| * | Initial step toward supporting qualification conversions (C++ 4.4). | Douglas Gregor | 2008-10-21 | 1 | -3/+24 |
| * | Fix use of dyn_cast. | Daniel Dunbar | 2008-10-21 | 1 | -1/+1 |
| * | Preliminary support for function overloading | Douglas Gregor | 2008-10-21 | 1 | -13/+71 |
| * | Fix <rdar://problem/6268365> Parser rejects property (dot notation) access on... | Steve Naroff | 2008-10-20 | 1 | -1/+9 |
| * | Sema::CheckCompareOperands() and ASTContext::mergeTypes(): Change handling of... | Steve Naroff | 2008-10-20 | 1 | -0/+7 |
| * | Fix rdar://6257721 by tightening up the block "snapshot" check, and | Chris Lattner | 2008-10-20 | 1 | -9/+39 |
| * | Downgrade incompatibilities with objc qualified types (e.g. id <P>) to warnings. | Steve Naroff | 2008-10-14 | 1 | -1/+13 |
| * | Final phase of converting BlockDecls over to DeclContext. This is unfortunate... | Steve Naroff | 2008-10-10 | 1 | -64/+35 |
| * | Instantiate the BlockDecl in ActOnBlockStart() so we can use it as a DeclCont... | Steve Naroff | 2008-10-08 | 1 | -4/+4 |
| * | - Add BlockDecl AST node. | Steve Naroff | 2008-10-08 | 1 | -2/+5 |
| * | simplify padding, just fold it into the earlier resize. | Chris Lattner | 2008-09-30 | 1 | -7/+2 |
| * | fix a potential buffer overrun that Eli noticed | Chris Lattner | 2008-09-30 | 1 | -0/+7 |
| * | Add diagnostic for .{lo,hi,e,o} on odd-sized extended vectors. | Daniel Dunbar | 2008-09-30 | 1 | -0/+2 |
| * | Teach Sema::CheckAssignmentConstraints() to allow assignments between id and ... | Steve Naroff | 2008-09-29 | 1 | -2/+12 |
| * | Change a NOTE to a FIXME based on feedback from clattner. | Steve Naroff | 2008-09-28 | 1 | -2/+11 |
| * | Fix <rdar://problem/6252108> assigning to argument passed to block should not... | Steve Naroff | 2008-09-28 | 1 | -1/+1 |