| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Rename TagDecl::isDefinition -> isCompleteDefinition | John McCall | 2011-10-07 | 1 | -4/+4 |
* | When 'bool' is not a built-in type but is defined as a macro, print | Douglas Gregor | 2011-09-27 | 1 | -2/+2 |
* | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie | 2011-09-23 | 1 | -1/+1 |
* | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -2/+2 |
* | OpenCL: introduce support for function scope __local variables | Peter Collingbourne | 2011-09-19 | 1 | -1/+2 |
* | Modules: introduce the __module_private__ declaration specifier, which | Douglas Gregor | 2011-09-09 | 1 | -2/+17 |
* | objective-c: Treat top-level objective-c declarations | Fariborz Jahanian | 2011-08-27 | 1 | -5/+1 |
* | Fix incorrect code indentation and silence dead store warning due to idiomati... | Ted Kremenek | 2011-08-17 | 1 | -43/+45 |
* | Add template instantiations to the output of -ast-dump. | Richard Trieu | 2011-07-28 | 1 | -10/+59 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -11/+11 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -0/+5 |
* | Added 'atomic' for objc properties. | Fariborz Jahanian | 2011-06-11 | 1 | -0/+5 |
* | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith | 2011-06-11 | 1 | -52/+63 |
* | Modify some deleted function methods to better reflect reality: | Alexis Hunt | 2011-05-06 | 1 | -3/+3 |
* | Remove dead variable caught by GCC. | Nick Lewycky | 2011-05-02 | 1 | -3/+0 |
* | Re-applies the patch first applied way back in r106099, with | Chandler Carruth | 2011-05-01 | 1 | -1/+1 |
* | When printing a base-specifier, print the ellipsis ("...") if it is a | Douglas Gregor | 2011-04-27 | 1 | -0/+3 |
* | Support for C++11 (non-template) alias declarations. | Richard Smith | 2011-04-15 | 1 | -1/+7 |
* | Teach -ast-print how to print template template parameters. | Richard Smith | 2011-04-15 | 1 | -3/+8 |
* | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 2011-04-14 | 1 | -1/+2 |
* | Support for printing/dumping static asserts | Peter Collingbourne | 2011-03-16 | 1 | -0/+9 |
* | Propagate the new exception information to FunctionProtoType. | Sebastian Redl | 2011-03-12 | 1 | -5/+15 |
* | Update UsingDecl, UnresolvedUsingTypenameDecl, and | Douglas Gregor | 2011-02-25 | 1 | -3/+3 |
* | Step #2/N of __label__ support: keep pushing LabelDecl forward, | Chris Lattner | 2011-02-17 | 1 | -0/+6 |
* | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall | 2011-01-19 | 1 | -1/+1 |
* | Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, | Alexis Hunt | 2011-01-08 | 1 | -2/+2 |
* | Implement support for template template parameter packs, e.g., | Douglas Gregor | 2011-01-05 | 1 | -2/+5 |
* | When instantiating a non-type template parameter pack, be sure to | Douglas Gregor | 2010-12-24 | 1 | -0/+3 |
* | Added missing IgnoreParens(). | Abramo Bagnara | 2010-12-14 | 1 | -3/+9 |
* | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall | 2010-12-06 | 1 | -2/+1 |
* | More anonymous struct/union redesign. This one deals with anonymous field use... | Francois Pichet | 2010-12-04 | 1 | -2/+2 |
* | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara | 2010-12-03 | 1 | -2/+6 |
* | AST printing for scoped enumerations and enumerations with a fixed underlying... | Douglas Gregor | 2010-12-01 | 1 | -3/+16 |
* | Make sure to print cvr-qualifiers on function declarations | Douglas Gregor | 2010-11-19 | 1 | -0/+10 |
* | Tweak in DeclPrinter printing of uses of copy constructors. Patch by Jim Goo... | Ted Kremenek | 2010-09-17 | 1 | -2/+5 |
* | Fix DeclPrinter to not include '=' in printing when no initializer is provide... | Ted Kremenek | 2010-09-07 | 1 | -3/+3 |
* | De-memberify the VarDecl and FunctionDecl StorageClass enums. | John McCall | 2010-08-26 | 1 | -5/+6 |
* | Added locations and type source info for DeclarationName. | Abramo Bagnara | 2010-08-11 | 1 | -1/+1 |
* | Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, | Douglas Gregor | 2010-08-11 | 1 | -10/+3 |
* | - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for for... | Sebastian Redl | 2010-08-09 | 1 | -3/+10 |
* | Don't print out ivars twice in Decl::print(). Fixes <rdar://problem/8253668>. | Ted Kremenek | 2010-07-30 | 1 | -0/+6 |
* | Fix a crashing but trying to print a TemplateTemplateParmDecl | Craig Silverstein | 2010-07-09 | 1 | -1/+5 |
* | AST: Propogate printing policy to types in a bunch more places. | Daniel Dunbar | 2010-06-30 | 1 | -1/+2 |
* | Don't ast-print the builtin __[u]int128_t. | Argyrios Kyrtzidis | 2010-06-17 | 1 | -4/+9 |
* | Revert r106099; it broke self-host. | Douglas Gregor | 2010-06-16 | 1 | -1/+1 |
* | Added TemplateTypeParmType::getDecl(). | Abramo Bagnara | 2010-06-16 | 1 | -1/+1 |
* | Added AccessSpecDecl node. | Abramo Bagnara | 2010-06-05 | 1 | -16/+11 |
* | And finally, revert the accidental check-in part of the previous reversion. I... | Sebastian Redl | 2010-05-07 | 1 | -5/+1 |
* | Revert 103247, it causes lots of test failures. | Sebastian Redl | 2010-05-07 | 1 | -1/+5 |
* | Add raw_ostream operators to NamedDecl for convenience. Switch over all users... | Benjamin Kramer | 2010-04-17 | 1 | -40/+29 |