| Commit message (Expand) | Author | Age | Files | Lines |
| * | Give OpaqueValueExpr a source location, because its source location | Douglas Gregor | 2011-01-28 | 1 | -1/+1 |
| * | In a ObjCMessageExpr with the super class as receiver, 'super' is actually a ... | Argyrios Kyrtzidis | 2011-01-25 | 1 | -3/+3 |
| * | Refactor the dependence computation for DeclRefExpr so that we can | Douglas Gregor | 2011-01-19 | 1 | -38/+68 |
| * | Implement basic support for the use of variadic templates and blocks | Douglas Gregor | 2011-01-19 | 1 | -0/+12 |
| * | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall | 2011-01-19 | 1 | -1/+1 |
| * | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad | 2011-01-12 | 1 | -2/+2 |
| * | Add Decl::isParameterPack(), which covers both function and template | Douglas Gregor | 2011-01-05 | 1 | -5/+2 |
| * | Refactor the tree transform's many loops over sets of expressions | Douglas Gregor | 2011-01-03 | 1 | -4/+4 |
| * | Add an AST representation for non-type template parameter | Douglas Gregor | 2010-12-23 | 1 | -2/+8 |
| * | Variadic templates: extend the Expr class with a bit that specifies | Douglas Gregor | 2010-12-15 | 1 | -32/+136 |
| * | Introduce ObjCMessageExpr::getReceiverRange() to get the source range of the ... | Argyrios Kyrtzidis | 2010-12-10 | 1 | -1/+17 |
| * | Keep the source location of the selector in ObjCMessageExpr. | Argyrios Kyrtzidis | 2010-12-10 | 1 | -10/+16 |
| * | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 1 | -8/+0 |
| * | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall | 2010-12-06 | 1 | -3/+3 |
| * | Make IgnoreParenLValueCasts skip __extension__ nodes like IgnoreParens(). | John McCall | 2010-12-04 | 1 | -3/+11 |
| * | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall | 2010-12-04 | 1 | -2/+44 |
| * | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall | 2010-12-02 | 1 | -33/+7 |
| * | Restore the lvalue-to-rvalue conversion patch with a minimal fix. | John McCall | 2010-12-01 | 1 | -0/+2 |
| * | L-value to r-value conversion is not ready for prime-time. | John McCall | 2010-11-30 | 1 | -2/+0 |
| * | Introduce an r-value to l-value cast kind. I'm not promising anything | John McCall | 2010-11-30 | 1 | -0/+2 |
| * | Look through parentheses when deciding whether an expr is a temporary object.... | Anders Carlsson | 2010-11-28 | 1 | -4/+4 |
| * | Switch a lot of call-sites over to using the new value-kind calculations. | John McCall | 2010-11-24 | 1 | -1/+1 |
| * | Calculate the value kind of an expression when it's created and | John McCall | 2010-11-18 | 1 | -24/+38 |
| * | a metric ton of refactoring later, Sema::getLocationOfStringLiteralByte | Chris Lattner | 2010-11-17 | 1 | -0/+69 |
| * | Kill CK_Unknown and flesh out the documentation for the existing CastKinds. | John McCall | 2010-11-16 | 1 | -2/+0 |
| * | Add a new expression kind, OpaqueValueExpr, which is useful for | John McCall | 2010-11-15 | 1 | -0/+6 |
| * | Assorted work leading towards the elimination of CK_Unknown. | John McCall | 2010-11-15 | 1 | -0/+8 |
| * | Add a few more complex-related cast kinds that arise due to arbitrary | John McCall | 2010-11-14 | 1 | -2/+12 |
| * | Introduce five new cast kinds for various conversions into and | John McCall | 2010-11-13 | 1 | -3/+13 |
| * | Introduce a null-to-pointer implicit cast kind. | John McCall | 2010-11-13 | 1 | -0/+2 |
| * | Fix InitListExpr::getSourceRange() to work in the case of no locations for '(... | Ted Kremenek | 2010-11-09 | 1 | -0/+29 |
| * | Emit error when using a bound member function for something other than callin... | Argyrios Kyrtzidis | 2010-11-01 | 1 | -0/+6 |
| * | Emit an error when trying to form a pointer-to-member to a bitfield. | Argyrios Kyrtzidis | 2010-10-30 | 1 | -0/+5 |
| * | Rename alignof -> alignOf to avoid irritating C++'0x compilers, | Chris Lattner | 2010-10-30 | 1 | -5/+5 |
| * | Optimize field space usage in CompoundStmt, LabelStmt, Expr, and CastExpr. | John McCall | 2010-10-26 | 1 | -16/+16 |
| * | Treat __extension__ like ParenExpr. | Abramo Bagnara | 2010-10-15 | 1 | -14/+48 |
| * | Eliminate usage of ObjCSuperExpr used for | Fariborz Jahanian | 2010-10-14 | 1 | -9/+21 |
| * | Patch to support transparent_union arguments | Fariborz Jahanian | 2010-09-27 | 1 | -0/+7 |
| * | Copying result of object property reference expression | Fariborz Jahanian | 2010-09-27 | 1 | -1/+6 |
| * | Fixed isConstantInitializer for __builtin_choose_expr. | Abramo Bagnara | 2010-09-27 | 1 | -0/+3 |
| * | Warn when an expression result in a LabelStmt is unused. | Argyrios Kyrtzidis | 2010-09-19 | 1 | -1/+5 |
| * | Right, there are *two* cases of pr-value class-type expressions that don't | John McCall | 2010-09-16 | 1 | -3/+8 |
| * | Tweak comment as suggested by Sebastian. | John McCall | 2010-09-15 | 1 | -1/+1 |
| * | one piece of code is responsible for the lifetime of every aggregate | John McCall | 2010-09-15 | 1 | -35/+20 |
| * | Test destructors in delete expressions and of temporaries for throwing. | Sebastian Redl | 2010-09-10 | 1 | -3/+23 |
| * | Address Doug's comments. | Sebastian Redl | 2010-09-10 | 1 | -1/+6 |
| * | First version of a testcase, plus fixes. | Sebastian Redl | 2010-09-10 | 1 | -2/+5 |
| * | Implement Expr::CanThrow, a function that applies the noexcept operator rules... | Sebastian Redl | 2010-09-10 | 1 | -0/+201 |
| * | Make CallExpr::getCalleeDecl look through pointer derefs. | Sebastian Redl | 2010-09-10 | 1 | -0/+8 |
| * | Fix the memory leak of FloatingLiteral/IntegerLiteral. | Argyrios Kyrtzidis | 2010-08-28 | 1 | -0/+38 |