| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add info to ObjCPropertyRefExpr to indicate whether the dot syntax property | Argyrios Kyrtzidis | 2012-03-30 | 1 | -2/+4 |
| * | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall | 2012-03-10 | 1 | -13/+2 |
| * | AST representation for user-defined literals, plus just enough of semantic | Richard Smith | 2012-03-07 | 1 | -0/+9 |
| * | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek | 2012-03-06 | 1 | -0/+72 |
| * | Serialize InitListExpr's initializesStdInitializerList bit, so it's not left ... | Benjamin Kramer | 2012-02-27 | 1 | -0/+1 |
| * | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor | 2012-02-24 | 1 | -0/+16 |
| * | Deserialize the direct-initialization range of a "new" expression | Douglas Gregor | 2012-02-20 | 1 | -7/+2 |
| * | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl | 2012-02-16 | 1 | -9/+6 |
| * | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl | 2012-02-16 | 1 | -6/+9 |
| * | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl | 2012-02-16 | 1 | -9/+6 |
| * | Implement AST (de-)serialization for lambda expressions. | Douglas Gregor | 2012-02-14 | 1 | -1/+33 |
| * | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor | 2012-02-07 | 1 | -0/+5 |
| * | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -1/+1 |
| * | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer | 2012-02-04 | 1 | -0/+1 |
| * | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -31/+37 |
| * | Remove unreachable code in Clang. (replace with llvm_unreachable where approp... | David Blaikie | 2012-01-17 | 1 | -2/+0 |
| * | Add IsImplicit field in ObjCMessageExpr that is true when the message | Argyrios Kyrtzidis | 2012-01-12 | 1 | -0/+1 |
| * | [PCH] Make sure that the SourceExpr of a OpaqueValueExpr is always initialized | Argyrios Kyrtzidis | 2011-12-03 | 1 | -18/+3 |
| * | Promote ModuleMap::Module to a namespace-scope class in the Basic | Douglas Gregor | 2011-11-30 | 1 | -5/+5 |
| * | There's no good reason to track temporaries in ExprWithCleanups, | John McCall | 2011-11-10 | 1 | -8/+9 |
| * | Change the AST representation of operations on Objective-C | John McCall | 2011-11-06 | 1 | -0/+24 |
| * | Fix the representation of wide strings in the AST and IR so that it uses the ... | Eli Friedman | 2011-11-01 | 1 | -3/+4 |
| * | Implement support for dependent Microsoft __if_exists/__if_not_exists | Douglas Gregor | 2011-10-25 | 1 | -0/+16 |
| * | [PCH] When serializing Stmts, keep track of when sub statements are reference... | Argyrios Kyrtzidis | 2011-10-21 | 1 | -1/+16 |
| * | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman | 2011-10-11 | 1 | -0/+23 |
| * | Added a flag to identify resolved overloaded function references. | Abramo Bagnara | 2011-10-05 | 1 | -3/+10 |
| * | Allow getting all source locations of selector identifiers in a ObjCMessageExpr. | Argyrios Kyrtzidis | 2011-10-03 | 1 | -2/+8 |
| * | Fix up assertion a bit more | Douglas Gregor | 2011-09-23 | 1 | -1/+1 |
| * | Eliminate an MSVC comparison warning, from Aaron Ballman | Douglas Gregor | 2011-09-23 | 1 | -1/+1 |
| * | Rename ExplicitTemplateArgumentList -> ASTTemplateArgumentListInfo, no functi... | Argyrios Kyrtzidis | 2011-09-22 | 1 | -2/+2 |
| * | In ASTReader, replace the never-NULL ASTContext pointer with an | Douglas Gregor | 2011-09-09 | 1 | -53/+53 |
| * | Don't try keeping a 'LeadingEmptyMacroLoc' in NullStmt. This fails | Argyrios Kyrtzidis | 2011-09-01 | 1 | -1/+1 |
| * | Use the local -> global mapping functions for selectors more | Douglas Gregor | 2011-07-28 | 1 | -2/+2 |
| * | Teach the ASTReader to perform local and global mapping of identifier | Douglas Gregor | 2011-07-28 | 1 | -5/+8 |
| * | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -2/+2 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -8/+8 |
| * | Rename ASTReader::PerFileData to serialization::Module, pulling it out | Douglas Gregor | 2011-07-22 | 1 | -5/+5 |
| * | In the AST reader, factor out the mapping of local type IDs to global | Douglas Gregor | 2011-07-22 | 1 | -8/+8 |
| * | In the ASTReader, factor out the loading of (local) declaration IDs, | Douglas Gregor | 2011-07-21 | 1 | -63/+68 |
| * | Add serialization support for SubstNonTypeTemplateParmExpr. | John McCall | 2011-07-15 | 1 | -139/+80 |
| * | Properly implement the scope restriction on the NRVO for | Douglas Gregor | 2011-07-06 | 1 | -2/+3 |
| * | Introduce the notion of instantiation dependence into Clang's AST. A | Douglas Gregor | 2011-07-01 | 1 | -1/+2 |
| * | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor | 2011-06-21 | 1 | -0/+10 |
| * | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -1/+33 |
| * | Add support for builtin astype: | Tanya Lattner | 2011-06-04 | 1 | -1/+5 |
| * | Add an optional field attached to a DeclRefExpr which points back to the | Chandler Carruth | 2011-05-01 | 1 | -6/+11 |
| * | Remove the NameQualifier struct, which was just a wrapper around | Chandler Carruth | 2011-05-01 | 1 | -1/+1 |
| * | Several cosmetic changes, no functionality changed. | Chandler Carruth | 2011-05-01 | 1 | -1/+1 |
| * | Move the state bits in DeclRefExpr out of the pointer union and into | Chandler Carruth | 2011-05-01 | 1 | -9/+5 |
| * | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+15 |