| Commit message (Expand) | Author | Age | Files | Lines |
| * | Calculate the value kind of an expression when it's created and | John McCall | 2010-11-18 | 1 | -40/+68 |
| * | Improve diagnostic for calling non-const method on const object. Fixes rdar:/... | Argyrios Kyrtzidis | 2010-11-16 | 1 | -1/+17 |
| * | Assorted work leading towards the elimination of CK_Unknown. | John McCall | 2010-11-15 | 1 | -15/+23 |
| * | When complaining about ambiguous overload resolution for a unary or | Douglas Gregor | 2010-11-13 | 1 | -6/+10 |
| * | When we're type-checking the result of calling a conversion function | Douglas Gregor | 2010-11-13 | 1 | -2/+9 |
| * | Pre-compute all possible usual-arithmetic-conversions results for the | John McCall | 2010-11-13 | 1 | -26/+85 |
| * | Store the list of arithmetic types as a static array of member pointers | John McCall | 2010-11-13 | 1 | -23/+39 |
| * | Friend function declarations can overload with tag declarations. | John McCall | 2010-11-10 | 1 | -1/+3 |
| * | Improve our handling of C++ [class.copy]p3, which specifies that a | Douglas Gregor | 2010-11-08 | 1 | -1/+1 |
| * | Properly diagnose invalid casts to function references. Patch by | Douglas Gregor | 2010-11-08 | 1 | -4/+7 |
| * | Implement [over.ics.rank]p4: A conversion that does not convert an std::nullp... | Anders Carlsson | 2010-11-05 | 1 | -0/+1 |
| * | std::nullptr_t is a fundamental type for RTTI purposes. | Anders Carlsson | 2010-11-04 | 1 | -1/+1 |
| * | When producing overload candidates for binary built-in operators, keep | Douglas Gregor | 2010-11-03 | 1 | -123/+258 |
| * | No really, we don't have a retain/release system for statements/expressions | John McCall | 2010-10-26 | 1 | -7/+7 |
| * | Actually, that doesn't really work, and anyway we should choose | John McCall | 2010-10-26 | 1 | -10/+1 |
| * | Consider conversions of Objective-C pointers to 'id' to be basically of | John McCall | 2010-10-26 | 1 | -1/+10 |
| * | Implement the integral promotion rules for the C++0x char16_t and | Douglas Gregor | 2010-10-21 | 1 | -14/+31 |
| * | Add builtin conditional operator candidates for scoped enumeration | Douglas Gregor | 2010-10-15 | 1 | -3/+12 |
| * | Teach the warning about unnamed/local types in template arguments to | Douglas Gregor | 2010-10-13 | 1 | -1/+1 |
| * | Introduce support for emitting diagnostics (warnings + their notes) | Douglas Gregor | 2010-10-12 | 1 | -14/+11 |
| * | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor | 2010-10-08 | 1 | -4/+9 |
| * | When performing template argument deduction of a function template | Douglas Gregor | 2010-09-29 | 1 | -2/+2 |
| * | Don't warn with -Wbool-conversions if the user wrote an explicit cast like "(... | Argyrios Kyrtzidis | 2010-09-28 | 1 | -1/+2 |
| * | Kill FunctionDecl's IsCopyAssignment bit; it duplicated what could | Douglas Gregor | 2010-09-27 | 1 | -1/+1 |
| * | Patch implements passing arrays to functions expecting | Fariborz Jahanian | 2010-09-24 | 1 | -0/+6 |
| * | Don't assert when attempting to take the address of an overloaded | Douglas Gregor | 2010-09-12 | 1 | -1/+3 |
| * | When performing overload resolution, only compare the final conversion | Douglas Gregor | 2010-09-12 | 1 | -7/+11 |
| * | Implement the "note" in C++ [over.built]p1, which is actually meant to | Douglas Gregor | 2010-09-12 | 1 | -1/+43 |
| * | Don't perform integral promotions from an incompletion enumeration | Douglas Gregor | 2010-09-12 | 1 | -1/+2 |
| * | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor | 2010-09-09 | 1 | -9/+4 |
| * | Fix the memory leak of FloatingLiteral/IntegerLiteral. | Argyrios Kyrtzidis | 2010-08-28 | 1 | -2/+2 |
| * | Propagate whether an id-expression is the immediate argument of | John McCall | 2010-08-27 | 1 | -14/+4 |
| * | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -12/+11 |
| * | 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 | -17/+17 |
| * | More incremental progress towards not including Expr.h in Sema.h. | John McCall | 2010-08-25 | 1 | -4/+3 |
| * | Move more stuff out of Sema.h. | John McCall | 2010-08-25 | 1 | -1/+3 |
| * | Catch the case of trying to turn '&(X::a)' into a member pointer as well. | John McCall | 2010-08-24 | 1 | -10/+20 |
| * | When trying to resolve the address of an overloaded expression, | John McCall | 2010-08-24 | 1 | -7/+27 |
| * | Move some of SemaOverload's API to various places in Overload.h, and kill | John McCall | 2010-08-24 | 1 | -321/+380 |
| * | Struggle mightily against header inclusion in Sema.h. | John McCall | 2010-08-24 | 1 | -0/+2 |
| * | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -20/+20 |
| * | Fold ASTOwningResult back into ActionResult. | John McCall | 2010-08-24 | 1 | -2/+2 |
| * | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -80/+56 |
| * | In Sema::AddBuiltinOperatorCandidates, candidate pointer types set can also c... | Argyrios Kyrtzidis | 2010-08-23 | 1 | -14/+12 |
| * | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -1/+1 |
| * | twik to my previous patch for pr7936. | Fariborz Jahanian | 2010-08-21 | 1 | -2/+8 |
| * | patch to support comparison involving | Fariborz Jahanian | 2010-08-21 | 1 | -6/+14 |
| * | Remove dead code. | Fariborz Jahanian | 2010-08-20 | 1 | -3/+1 |
| * | Rmove dead code. | Fariborz Jahanian | 2010-08-20 | 1 | -3/+0 |