Age | Commit message (Expand) | Author |
2011-09-30 | Mark a TagDecl when it is free standing (e.g. "struct foo;") | Argyrios Kyrtzidis |
2011-09-23 | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-09-22 | Don't use TemplateArgumentListInfo inside AST nodes because it may leak. | Argyrios Kyrtzidis |
2011-09-13 | [PCH] Fix a regression that r139441 introduced (decls were getting passed | Argyrios Kyrtzidis |
2011-09-10 | Clean up our handling of Objective-C definitions in AST files. Rather | Douglas Gregor |
2011-09-10 | Kill of the Decl::PCHLevel field entirely. We now only need to know | Douglas Gregor |
2011-09-09 | Eliminate all but one caller of Decl::getPCHLevel() | Douglas Gregor |
2011-09-09 | Introduce a new predicate Decl::isFromASTFile() to determine whether a | Douglas Gregor |
2011-09-09 | Modules: introduce the __module_private__ declaration specifier, which | Douglas Gregor |
2011-08-27 | objective-c: Treat top-level objective-c declarations | Fariborz Jahanian |
2011-08-17 | Remove an unnecessary assignment (to InstFromD). | Argyrios Kyrtzidis |
2011-08-17 | Add serialization support for ClassScopeFunctionSpecializationDecl. | Francois Pichet |
2011-08-15 | Track in the AST whether a function is constexpr. | Richard Smith |
2011-08-12 | In the serialized AST format, make the translation unit a "predefined" | Douglas Gregor |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-01 | Introduce the notion of instantiation dependence into Clang's AST. A | Douglas Gregor |
2011-06-17 | Objective-C fast enumeration loop variables are not retained in ARC, but | John McCall |
2011-06-11 | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith |
2011-06-11 | Implement Objective-C Related Result Type semantics. | Douglas Gregor |
2011-06-06 | Touchup to comments that weren't quite in sync with code | Jonathan D. Turner |
2011-06-03 | Improvements to abbreviations for PCH which add support for EnumDecl, ObjCIva... | Jonathan D. Turner |
2011-06-03 | Test of commit access. | Jonathan D. Turner |
2011-06-03 | Introduce additional abbreviations into the AST writer for | Douglas Gregor |
2011-05-12 | Implement defaulting of destructors. | Sean Hunt |
2011-05-06 | Modify some deleted function methods to better reflect reality: | Sean Hunt |
2011-05-05 | Implement support for C++0x alias templates. | Richard Smith |
2011-05-02 | Revise the representation of parameter scope data so that the | John McCall |
2011-05-01 | Store a parameter index and function prototype depth in every | John McCall |
2011-05-01 | Re-applies the patch first applied way back in r106099, with | Chandler Carruth |
2011-04-24 | Set the correct anonymous namespace (must be last reopening), and behave corr... | Sebastian Redl |
2011-04-24 | Fix adding an anonymous namespace in a chained PCH to a namespace from a prev... | Sebastian Redl |
2011-04-19 | We regard a function as 'unused' from the codegen perspective, so our warning... | Argyrios Kyrtzidis |
2011-04-15 | Support for C++11 (non-template) alias declarations. | Richard Smith |
2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith |
2011-03-09 | Add a bit to ParmVarDecl indicating whether the parameter undergoes | John McCall |
2011-03-08 | Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source ran... | Abramo Bagnara |
2011-03-08 | Fixed NamespaceDecl source range. | Abramo Bagnara |
2011-03-08 | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara |
2011-03-06 | Completed source ranges fixes for all classes inheriting from TypeDecl. | Abramo Bagnara |
2011-03-06 | Fixed TypedefDecl and TemplateTypeParameter source range. | Abramo Bagnara |
2011-03-05 | Fixed LabelDecl source range and cleaned creation code. | Abramo Bagnara |
2011-03-03 | Fixed source range for LabelDecl. | Abramo Bagnara |
2011-03-03 | Removed left brace location from LinkageSpecDecl. | Abramo Bagnara |
2011-03-03 | Fixed end source location for LinkageSpecDecl. | Abramo Bagnara |
2011-03-03 | Fixed source range for FileScopeAsmDecl. Others source range fixes will follow. | Abramo Bagnara |
2011-02-25 | Push nested-name-specifier source location information into namespace | Douglas Gregor |
2011-02-25 | Push nested-name-specifier source location information into using directives. | Douglas Gregor |
2011-02-25 | Update UsingDecl, UnresolvedUsingTypenameDecl, and | Douglas Gregor |
2011-02-17 | Step #2/N of __label__ support: keep pushing LabelDecl forward, | Chris Lattner |