| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
* | We don't actually need to check the implicit object argument's | Douglas Gregor | 2010-08-19 | 1 | -15/+0 |
* | Properly implement the part of C++ [over.match.funcs]p4 that treats | Douglas Gregor | 2010-08-19 | 1 | -9/+29 |
* | Include a proper citation for the wacky hijinks involving conversion function... | Douglas Gregor | 2010-08-19 | 1 | -3/+5 |
* | There is no pointer conversion between to similar types (i.e., same | Douglas Gregor | 2010-08-18 | 1 | -0/+5 |
* | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -3/+3 |
* | Handle the obvious case for diagnosing redeclarations of extern "C" functions. | John McCall | 2010-08-12 | 1 | -0/+5 |
* | Added locations and type source info for DeclarationName. | Abramo Bagnara | 2010-08-11 | 1 | -4/+11 |
* | Improve our handling of user-defined conversions when computing | Douglas Gregor | 2010-08-11 | 1 | -61/+95 |
* | Silence GCC warning about && and || without explicit grouping. | Chandler Carruth | 2010-08-08 | 1 | -2/+2 |
* | Allow reference binding of a reference of Objective-C object type to | Douglas Gregor | 2010-08-07 | 1 | -7/+20 |
* | Store inheritance paths after CastExprs instead of inside them. | John McCall | 2010-08-07 | 1 | -9/+10 |
* | Introduce implicit conversions between AltiVec vectors and GCC | Douglas Gregor | 2010-08-06 | 1 | -9/+13 |
* | TDK_InconsistentQuals is really totally different from TDK_Inconsistent. | John McCall | 2010-08-05 | 1 | -8/+31 |
* | Get rid of isObjectType; when C++ says "object type", it generally | Eli Friedman | 2010-08-05 | 1 | -2/+3 |
* | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -24/+4 |
* | Update ImplicitCastExpr to be able to represent an XValue. | Sebastian Redl | 2010-07-20 | 1 | -3/+5 |
* | When determining whether an overload set with explicit template | Douglas Gregor | 2010-07-14 | 1 | -1/+2 |
* | Whenever we're creating an expression that is typically an rvalue | Douglas Gregor | 2010-07-13 | 1 | -1/+1 |
* | When forming a function call or message send expression, be sure to | Douglas Gregor | 2010-07-13 | 1 | -8/+8 |
* | Introduce a new routine, LookupConstructors(), and use it for all | Douglas Gregor | 2010-07-02 | 1 | -5/+1 |
* | Extend the "cannot convert from base class pointer to derived class | Douglas Gregor | 2010-07-01 | 1 | -6/+14 |
* | Improve diagnostic when we fail to pick an overload because it would | Douglas Gregor | 2010-06-30 | 1 | -0/+32 |
* | Add a return to silence a warning. Alternately a default: return false | Eric Christopher | 2010-06-30 | 1 | -0/+2 |
* | Make both old and new versions of reference binding use the new classificatio... | Sebastian Redl | 2010-06-30 | 1 | -133/+159 |
* | Implement C++ DR299, which allows an implicit conversion from a class | Douglas Gregor | 2010-06-30 | 1 | -5/+44 |
* | Re-improve recovery when the condition of a switch statement does not | Douglas Gregor | 2010-06-29 | 1 | -5/+3 |
* | Factor the conversion from a switch condition to an integral or | Douglas Gregor | 2010-06-29 | 1 | -0/+134 |
* | Vector types are not arithmetic types, either. Note that we now ban | Douglas Gregor | 2010-06-22 | 1 | -3/+2 |
* | Type Type::isRealFloatingType() that vectors are not floating-point | Douglas Gregor | 2010-06-22 | 1 | -3/+3 |
* | Change Type::isFloatingType() to reflect the actual definition of a | Douglas Gregor | 2010-06-22 | 1 | -6/+2 |
* | Don't allow vector conversions to sneak in under the guise of | Douglas Gregor | 2010-06-22 | 1 | -4/+9 |
* | Use UnaryOperator as the representation of dependent expressions when | Douglas Gregor | 2010-06-17 | 1 | -0/+6 |
* | Fix a point of semantics with using declaration hiding: method templates | John McCall | 2010-06-16 | 1 | -7/+46 |
* | Give Type::isIntegralType() an ASTContext parameter, so that it | Douglas Gregor | 2010-06-16 | 1 | -4/+3 |