Age | Commit message (Expand) | Author |
2010-10-21 | Implement the integral promotion rules for the C++0x char16_t and | Douglas Gregor |
2010-10-15 | Add builtin conditional operator candidates for scoped enumeration | Douglas Gregor |
2010-10-13 | Teach the warning about unnamed/local types in template arguments to | Douglas Gregor |
2010-10-12 | Introduce support for emitting diagnostics (warnings + their notes) | Douglas Gregor |
2010-10-08 | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor |
2010-09-29 | When performing template argument deduction of a function template | Douglas Gregor |
2010-09-28 | Don't warn with -Wbool-conversions if the user wrote an explicit cast like "(... | Argyrios Kyrtzidis |
2010-09-27 | Kill FunctionDecl's IsCopyAssignment bit; it duplicated what could | Douglas Gregor |
2010-09-24 | Patch implements passing arrays to functions expecting | Fariborz Jahanian |
2010-09-12 | Don't assert when attempting to take the address of an overloaded | Douglas Gregor |
2010-09-12 | When performing overload resolution, only compare the final conversion | Douglas Gregor |
2010-09-12 | Implement the "note" in C++ [over.built]p1, which is actually meant to | Douglas Gregor |
2010-09-12 | Don't perform integral promotions from an incompletion enumeration | Douglas Gregor |
2010-09-09 | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor |
2010-08-28 | Fix the memory leak of FloatingLiteral/IntegerLiteral. | Argyrios Kyrtzidis |
2010-08-27 | Propagate whether an id-expression is the immediate argument of | John McCall |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-25 | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall |
2010-08-25 | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall |
2010-08-25 | More incremental progress towards not including Expr.h in Sema.h. | John McCall |
2010-08-25 | Move more stuff out of Sema.h. | John McCall |
2010-08-24 | Catch the case of trying to turn '&(X::a)' into a member pointer as well. | John McCall |
2010-08-24 | When trying to resolve the address of an overloaded expression, | John McCall |
2010-08-24 | Move some of SemaOverload's API to various places in Overload.h, and kill | John McCall |
2010-08-24 | Struggle mightily against header inclusion in Sema.h. | John McCall |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall |
2010-08-24 | Fold ASTOwningResult back into ActionResult. | John McCall |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall |
2010-08-23 | In Sema::AddBuiltinOperatorCandidates, candidate pointer types set can also c... | Argyrios Kyrtzidis |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall |
2010-08-21 | twik to my previous patch for pr7936. | Fariborz Jahanian |
2010-08-21 | patch to support comparison involving | Fariborz Jahanian |
2010-08-20 | Remove dead code. | Fariborz Jahanian |
2010-08-20 | Rmove dead code. | Fariborz Jahanian |
2010-08-19 | We don't actually need to check the implicit object argument's | Douglas Gregor |
2010-08-19 | Properly implement the part of C++ [over.match.funcs]p4 that treats | Douglas Gregor |
2010-08-19 | Include a proper citation for the wacky hijinks involving conversion function... | Douglas Gregor |
2010-08-18 | There is no pointer conversion between to similar types (i.e., same | Douglas Gregor |
2010-08-12 | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor |
2010-08-12 | Handle the obvious case for diagnosing redeclarations of extern "C" functions. | John McCall |
2010-08-11 | Added locations and type source info for DeclarationName. | Abramo Bagnara |
2010-08-11 | Improve our handling of user-defined conversions when computing | Douglas Gregor |
2010-08-08 | Silence GCC warning about && and || without explicit grouping. | Chandler Carruth |
2010-08-07 | Allow reference binding of a reference of Objective-C object type to | Douglas Gregor |
2010-08-07 | Store inheritance paths after CastExprs instead of inside them. | John McCall |
2010-08-06 | Introduce implicit conversions between AltiVec vectors and GCC | Douglas Gregor |
2010-08-05 | TDK_InconsistentQuals is really totally different from TDK_Inconsistent. | John McCall |
2010-08-05 | Get rid of isObjectType; when C++ says "object type", it generally | Eli Friedman |
2010-07-25 | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor |
2010-07-20 | Update ImplicitCastExpr to be able to represent an XValue. | Sebastian Redl |