| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall | 2012-03-10 | 1 | -27/+8 |
* | [AST] Define a few more key getLocStart() implementations. | Daniel Dunbar | 2012-03-09 | 1 | -0/+18 |
* | [AST] Reimplement Stmt::getLoc{Start,End} to dispatch to subclass overloads. | Daniel Dunbar | 2012-03-09 | 1 | -1/+3 |
* | [AST] Add {DeclRefExpr,MemberExpr,ImplicitCastExpr}::{getLocStart,getLocEnd} ... | Daniel Dunbar | 2012-03-09 | 1 | -14/+26 |
* | [AST] Reduce Decl::getASTContext() calls. | Daniel Dunbar | 2012-03-09 | 1 | -11/+12 |
* | AST representation for user-defined literals, plus just enough of semantic | Richard Smith | 2012-03-07 | 1 | -2/+4 |
* | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek | 2012-03-06 | 1 | -0/+121 |
* | Fix a couple -Wuninitialized warnings from gcc. Reported by David Greene. | Eli Friedman | 2012-02-29 | 1 | -1/+2 |
* | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles | 2012-02-25 | 1 | -12/+2 |
* | Revert r151357. That unreachable is reachable... | Nick Lewycky | 2012-02-24 | 1 | -11/+8 |
* | Silence gcc warnings pointing out that CharByteWidth could be used | Nick Lewycky | 2012-02-24 | 1 | -8/+11 |
* | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor | 2012-02-24 | 1 | -0/+1 |
* | Seriously, are injected-class-names that hard? | Douglas Gregor | 2012-02-23 | 1 | -1/+1 |
* | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor | 2012-02-23 | 1 | -0/+55 |
* | Generate an AST for the conversion from a lambda closure type to a | Douglas Gregor | 2012-02-22 | 1 | -0/+7 |
* | ObjCMessageExpr: Don't leave SelLocsKind uninitialized when the send is impli... | Benjamin Kramer | 2012-02-20 | 1 | -1/+1 |
* | Basic code generation support for std::initializer_list. | Sebastian Redl | 2012-02-17 | 1 | -3/+4 |
* | Block expressions always have a prototyped function type; expose this | John McCall | 2012-02-17 | 1 | -3/+4 |
* | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl | 2012-02-16 | 1 | -4/+1 |
* | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl | 2012-02-16 | 1 | -1/+4 |
* | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl | 2012-02-16 | 1 | -4/+1 |
* | Split reinterpret_casts of member pointers out from CK_BitCast; this | John McCall | 2012-02-15 | 1 | -0/+7 |
* | Pending clear answer from WG21 on whether core issue 903 is intended to apply to | Richard Smith | 2012-02-14 | 1 | -4/+11 |
* | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl | 2012-02-11 | 1 | -3/+2 |
* | Switch the ObjC*Decl raw_stream overloads to take a reference, for consistenc... | Benjamin Kramer | 2012-02-07 | 1 | -1/+1 |
* | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor | 2012-02-07 | 1 | -0/+10 |
* | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -2/+2 |
* | Pacify gcc's -Wreturn-type. | Matt Beaumont-Gay | 2012-01-31 | 1 | -0/+1 |
* | Clean up switch in Expr::CanThrow. No functional change. | Eli Friedman | 2012-01-31 | 1 | -22/+75 |
* | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -21/+36 |
* | More dead code removal (using -Wunreachable-code) | David Blaikie | 2012-01-20 | 1 | -7/+4 |
* | Remove unnecessary default cases in switches over enums. | David Blaikie | 2012-01-17 | 1 | -1/+1 |
* | Some improvements to the handling of C11 atomic types: | David Chisnall | 2012-01-16 | 1 | -0/+18 |
* | If an ObjCMessageExpr is implicit, there are no source locations for the | Argyrios Kyrtzidis | 2012-01-12 | 1 | -3/+5 |
* | Add IsImplicit field in ObjCMessageExpr that is true when the message | Argyrios Kyrtzidis | 2012-01-12 | 1 | -19/+45 |
* | Add field IsIEEE in FloatingLiteral to distinguish between different 128-bit | Akira Hatanaka | 2012-01-10 | 1 | -1/+1 |
* | Revert r147664; it's breaking clang regression tests. | Eli Friedman | 2012-01-06 | 1 | -2/+2 |
* | Silence GCC warnings. | Jakub Staszak | 2012-01-06 | 1 | -2/+2 |
* | Add an APValue representation for the difference between two address-of-label... | Eli Friedman | 2012-01-04 | 1 | -27/+0 |
* | Fix a case where Expr::isConstantInitializer would return true for an express... | Eli Friedman | 2011-12-21 | 1 | -9/+22 |
* | Teach isConstantInitializer that numeric literals are constants, rather than | Richard Smith | 2011-12-09 | 1 | -0/+2 |
* | Move vector bitcast handling in constant expressions from the expression | Richard Smith | 2011-12-06 | 1 | -9/+13 |
* | Constant expression evaluation: support for evaluation of structs and unions of | Richard Smith | 2011-11-10 | 1 | -10/+15 |
* | Fix a cluster of related issues involving value-dependence and constant | Richard Smith | 2011-11-08 | 1 | -8/+15 |
* | Rip out CK_GetObjCProperty. | John McCall | 2011-11-07 | 1 | -3/+0 |
* | Change the AST representation of operations on Objective-C | John McCall | 2011-11-06 | 1 | -0/+82 |
* | Fix the representation of wide strings in the AST and IR so that it uses the ... | Eli Friedman | 2011-11-01 | 1 | -13/+62 |
* | Don't try to set the "array filler" in a InitListExpr twice. | Argyrios Kyrtzidis | 2011-10-21 | 1 | -0/+1 |
* | Macro metaprogramming for builtin types. | John McCall | 2011-10-18 | 1 | -1/+1 |
* | Add template instantiation support for AtomicExpr. | Eli Friedman | 2011-10-14 | 1 | -0/+21 |