| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 | -243/+243 |
| * | Recursive functions should be marked when used from another function. Fixes h... | Argyrios Kyrtzidis | 2010-08-25 | 1 | -1/+4 |
| * | More incremental progress towards not including Expr.h in Sema.h. | John McCall | 2010-08-25 | 1 | -5/+5 |
| * | Rename *PendingImplicitInstantiations to *PendingInstantiations. No | Chandler Carruth | 2010-08-25 | 1 | -3/+2 |
| * | Split FunctionScopeInfo and BlockScopeInfo into their own header. | John McCall | 2010-08-25 | 1 | -2/+4 |
| * | Remove AnalysisBasedWarnings.h's dependency on Type.h | John McCall | 2010-08-25 | 1 | -3/+4 |
| * | When trying to resolve the address of an overloaded expression, | John McCall | 2010-08-24 | 1 | -10/+14 |
| * | It is not error in c++ to take address of | Fariborz Jahanian | 2010-08-24 | 1 | -1/+4 |
| * | 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 | -73/+73 |
| * | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -7/+7 |
| * | PR7971: Compute the correct type for an address-of expression containing an | Eli Friedman | 2010-08-24 | 1 | -1/+1 |
| * | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -135/+96 |
| * | Relax the construction of a definition for implicit, trivial default | Chandler Carruth | 2010-08-23 | 1 | -2/+4 |
| * | Push DeclGroupRefs and TemplateNames in an opaque but type-safe way | John McCall | 2010-08-23 | 1 | -2/+1 |
| * | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -4/+4 |
| * | Detabify. | Eli Friedman | 2010-08-22 | 1 | -3/+3 |
| * | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -6/+5 |
| * | Add a workaround for PR7947, a crash trying to recover from invalid C++ code. | Nick Lewycky | 2010-08-20 | 1 | -16/+21 |
| * | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -4/+4 |
| * | Diagnose assiging to an interface object in | Fariborz Jahanian | 2010-08-16 | 1 | -0/+5 |
| * | When issuing warning for future conflict resolution, | Fariborz Jahanian | 2010-08-13 | 1 | -0/+3 |
| * | Zap unused UnaryOperator::OffsetOf. | Eli Friedman | 2010-08-13 | 1 | -4/+0 |
| * | Implement -Wcast-align. The initial design of this diagnostic diverges | John McCall | 2010-08-12 | 1 | -0/+4 |
| * | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -4/+4 |
| * | Added locations and type source info for DeclarationName. | Abramo Bagnara | 2010-08-11 | 1 | -59/+69 |
| * | Random temporary string cleanup. | Benjamin Kramer | 2010-08-11 | 1 | -1/+1 |
| * | Added TypeLocs to VAArgExpr node. | Abramo Bagnara | 2010-08-10 | 1 | -4/+10 |
| * | Added TypeLocs to TypesCompatibleExpr node. | Abramo Bagnara | 2010-08-10 | 1 | -4/+14 |
| * | When attempting to recover from a failed unqualified name lookup, make | Douglas Gregor | 2010-08-09 | 1 | -0/+2 |
| * | Integral-to-pointer conversions are not always null -> member pointer | Douglas Gregor | 2010-08-07 | 1 | -2/+8 |
| * | Store inheritance paths after CastExprs instead of inside them. | John McCall | 2010-08-07 | 1 | -11/+11 |
| * | PR7837: For qualified id's, make sure the decl context is complete if not | Eli Friedman | 2010-08-06 | 1 | -20/+18 |
| * | Introduce implicit conversions between AltiVec vectors and GCC | Douglas Gregor | 2010-08-06 | 1 | -6/+18 |
| * | Flip the switch to use OffsetOfExpr unconditionally; feel free to revert if | Eli Friedman | 2010-08-05 | 1 | -129/+5 |
| * | PR7769: Fix references to anonymous structs/unions in base classes in | Eli Friedman | 2010-08-05 | 1 | -7/+12 |
| * | Remove the warning for variables declared in the if-expression being used in | Nick Lewycky | 2010-08-05 | 1 | -21/+1 |
| * | Tighten the rules when deciding if an ivar must be | Fariborz Jahanian | 2010-07-30 | 1 | -3/+15 |
| * | Tigthen the condition for issung ivar shadowing | Fariborz Jahanian | 2010-07-29 | 1 | -1/+2 |
| * | When taking the address of a value of Objective-C object type (e.g., | Douglas Gregor | 2010-07-29 | 1 | -0/+2 |
| * | Don't die when a member access refers to a non-class member via a | Douglas Gregor | 2010-07-28 | 1 | -0/+3 |
| * | Fix a minor crash bug with constructs like Obj.Class::ENUM_VALUE. | Eli Friedman | 2010-07-27 | 1 | -4/+4 |
| * | PR7724: Don't try to evaluate value-dependent expressions. | Eli Friedman | 2010-07-27 | 1 | -1/+1 |
| * | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -13/+3 |
| * | turn down the logical bitwise confusion warning to not warn | Chris Lattner | 2010-07-24 | 1 | -11/+14 |
| * | Allow __func__ and __FUNCTION__ and __PRETTY_FUNCTION__ inside blocks. | Fariborz Jahanian | 2010-07-23 | 1 | -0/+2 |
| * | Vectors are not integer types, so the type system should not classify | Douglas Gregor | 2010-07-23 | 1 | -10/+16 |
| * | Warn when property ivar lookup finds a global variable | Fariborz Jahanian | 2010-07-22 | 1 | -2/+31 |
| * | Upgrade "'X' is unavailable" from a warning to an error. This matches GCC's ... | Ted Kremenek | 2010-07-21 | 1 | -1/+1 |