| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use the real keyword location when rebuilding an elaborated type instead of | John McCall | 2010-11-04 | 1 | -2/+4 |
| * | No really, we don't have a retain/release system for statements/expressions | John McCall | 2010-10-26 | 1 | -89/+89 |
| * | Improve the tracking of source locations for parentheses in constructor calls. | Chandler Carruth | 2010-10-25 | 1 | -3/+6 |
| * | Eliminate usage of ObjCSuperExpr used for | Fariborz Jahanian | 2010-10-14 | 1 | -14/+32 |
| * | Add some infrastructure for dealing with expressions of 'placeholder' type, | John McCall | 2010-10-12 | 1 | -8/+10 |
| * | When instantiating a new-expression, force a rebuild if there were default | John McCall | 2010-10-05 | 1 | -1/+8 |
| * | Implement the C++0x "trailing return type" feature, e.g., | Douglas Gregor | 2010-10-01 | 1 | -10/+25 |
| * | Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://848... | Argyrios Kyrtzidis | 2010-09-28 | 1 | -3/+4 |
| * | When marking the declarations in a default argument expression as | Douglas Gregor | 2010-09-14 | 1 | -0/+11 |
| * | Define and implement CXXNoexceptExpr. Create it in Sema. | Sebastian Redl | 2010-09-10 | 1 | -0/+21 |
| * | Simplify template instantiation for C++ exception declarations, | Douglas Gregor | 2010-09-09 | 1 | -16/+8 |
| * | Eliminate some unnecessary uses of TreeTransform::TemporaryBase. There | Douglas Gregor | 2010-09-09 | 1 | -53/+23 |
| * | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor | 2010-09-09 | 1 | -15/+1 |
| * | Add proper type-source information to UnaryTypeTraitExpr, including | Douglas Gregor | 2010-09-09 | 1 | -16/+7 |
| * | Push the range associated with a nested-name-specifier further through | Douglas Gregor | 2010-09-08 | 1 | -12/+21 |
| * | Microsoft's __uuidof operator implementation part 1. | Francois Pichet | 2010-09-08 | 1 | -0/+63 |
| * | Provide proper type-source location information for | Douglas Gregor | 2010-09-08 | 1 | -77/+41 |
| * | Improve source-location information for CXXNewExpr, by hanging on to | Douglas Gregor | 2010-09-07 | 1 | -21/+20 |
| * | Eliminate CXXBindReferenceExpr, which was used in a ton of | Douglas Gregor | 2010-09-02 | 1 | -10/+0 |
| * | When instantiating a function type, instantiate the return type before | Douglas Gregor | 2010-08-31 | 1 | -6/+13 |
| * | Revert my user-defined literal commits - r1124{58,60,67} pending | Alexis Hunt | 2010-08-30 | 1 | -6/+0 |
| * | Implement C++0x user-defined string literals. | Alexis Hunt | 2010-08-29 | 1 | -0/+6 |
| * | Fix the memory leak of FloatingLiteral/IntegerLiteral. | Argyrios Kyrtzidis | 2010-08-28 | 1 | -7/+8 |
| * | Continue to instantiate sub-statements in a CompoundStmt as long as | John McCall | 2010-08-27 | 1 | -2/+14 |
| * | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -214/+211 |
| * | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall | 2010-08-25 | 1 | -1/+1 |
| * | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall | 2010-08-25 | 1 | -7/+6 |
| * | Split FunctionScopeInfo and BlockScopeInfo into their own header. | John McCall | 2010-08-25 | 1 | -0/+2 |
| * | Struggle mightily against header inclusion in Sema.h. | John McCall | 2010-08-24 | 1 | -0/+1 |
| * | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -309/+307 |
| * | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -12/+12 |
| * | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -332/+298 |
| * | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -32/+32 |
| * | Preserve the zero-initialization and construction-kind settings when | Douglas Gregor | 2010-08-22 | 1 | -3/+8 |
| * | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -12/+8 |
| * | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -2/+2 |
| * | Regularize the API for accessing explicit template arguments. | John McCall | 2010-08-19 | 1 | -5/+5 |
| * | Implicit decl ref expressions might not have name locations; don't silently | John McCall | 2010-08-17 | 1 | -4/+6 |
| * | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -2/+2 |
| * | Added locations and type source info for DeclarationName. | Abramo Bagnara | 2010-08-11 | 1 | -64/+89 |
| * | Eliminate unnecessary uses of TemporaryBase in TreeTransform; | Douglas Gregor | 2010-08-10 | 1 | -19/+10 |
| * | Fixed redundant NNS loading. | Abramo Bagnara | 2010-08-10 | 1 | -1/+2 |
| * | Added TypeLocs to VAArgExpr node. | Abramo Bagnara | 2010-08-10 | 1 | -11/+11 |
| * | Added TypeLocs to TypesCompatibleExpr node. | Abramo Bagnara | 2010-08-10 | 1 | -12/+14 |
| * | Preserve calling convention etc. across template instantiations. | Eli Friedman | 2010-08-05 | 1 | -5/+10 |
| * | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -8/+2 |
| * | More block instantiation stuff. Set variable/param DeclContext | Fariborz Jahanian | 2010-07-13 | 1 | -4/+0 |
| * | Downgrade the "when type is in parentheses, array cannot have dynamic | Douglas Gregor | 2010-07-13 | 1 | -3/+3 |
| * | When forming a function call or message send expression, be sure to | Douglas Gregor | 2010-07-13 | 1 | -1/+1 |
| * | Copy over attributes to instantiated variable. | Fariborz Jahanian | 2010-07-12 | 1 | -5/+0 |