Age | Commit message (Expand) | Author |
2008-11-17 | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor |
2008-11-17 | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor |
2008-11-09 | Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedD... | Argyrios Kyrtzidis |
2008-11-06 | Parsing, ASTs, and semantic analysis for the declaration of overloaded | Douglas Gregor |
2008-11-04 | LinkageSpecDecl is c++ specific, move it to DeclCXX | Chris Lattner |
2008-10-29 | Fix crash reported in PR2923 where a function declared using typeof(another_f... | Ted Kremenek |
2008-10-15 | Simplify handling of struct/union/class tags. | Argyrios Kyrtzidis |
2008-10-10 | Final phase of converting BlockDecls over to DeclContext. This is unfortunate... | Steve Naroff |
2008-10-08 | Instantiate the BlockDecl in ActOnBlockStart() so we can use it as a DeclCont... | Steve Naroff |
2008-10-08 | - Add BlockDecl AST node. | Steve Naroff |
2008-10-03 | Add getTypeSpecStartLoc() to VarDecls and FunctionDecls. | Steve Naroff |
2008-09-05 | Change struct forward declarations and definitions to use unique RecordDecls,... | Ted Kremenek |
2008-09-05 | Remove "NextDecl" from RecordDecl. This change touches many files that where... | Ted Kremenek |
2008-09-02 | RecordDecl: | Ted Kremenek |
2008-09-02 | RecordDecl: | Ted Kremenek |
2008-09-02 | CXXRecordDecl and RecordDecl: | Ted Kremenek |
2008-08-11 | More #include cleaning | Daniel Dunbar |
2008-08-08 | Destroy and delete the FieldDecl members of a RecordDecl. | Argyrios Kyrtzidis |
2008-06-17 | Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. | Chris Lattner |
2008-06-16 | Silence uninitialized value warning during Release build. | Ted Kremenek |
2008-06-10 | -Add DeclChain member to DeclContext. | Argyrios Kyrtzidis |
2008-06-09 | -Changes to TagDecl: | Argyrios Kyrtzidis |
2008-06-09 | Added new C++ AST Decl subclasses. | Argyrios Kyrtzidis |
2008-06-04 | Move Decl and DeclContext implementations into a new DeclBase.cpp file. | Argyrios Kyrtzidis |
2008-06-01 | fix decl attributes cleaning | Nuno Lopes |
2008-05-27 | Don't swap function decls, and add them to the scope as they are | Eli Friedman |
2008-05-24 | Call the correct destructor. | Ted Kremenek |
2008-05-23 | Tweak AST dumper for ObjC ivars. | Steve Naroff |
2008-05-20 | Reclaim memory from chains of ScopedDecls, and reclaim memory for the initial... | Ted Kremenek |
2008-05-20 | Reclaim memory allocated for ParmVarDecl's in FunctionDecl::Destroy. | Ted Kremenek |
2008-05-20 | Remove unnecessary #include (introduced by a recent patch of mine). | Ted Kremenek |
2008-05-20 | Try to plug some memory leaks... | Ted Kremenek |
2008-05-04 | Simplify FunctionDecl::AddRedeclaration a bit by using std::swap. | Chris Lattner |
2008-04-27 | Parsing of namespaces: | Argyrios Kyrtzidis |
2008-04-22 | "This patch renames | Chris Lattner |
2008-04-21 | Clean up handling of function redeclarations | Douglas Gregor |
2008-04-17 | Addition of TranslationUnitDecl to the AST: | Argyrios Kyrtzidis |
2008-04-16 | New AST class for property implementation declarations. | Fariborz Jahanian |
2008-04-15 | Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVar... | Steve Naroff |
2008-04-13 | Use static_cast<> instead of cast<> in Decl::Destroy(). Suggestion by Argiris | Sam Bishop |
2008-04-12 | Default argument cleanups and minor improvements, patch by | Chris Lattner |
2008-04-11 | Invoke destructors in Decl::Destroy(). | Sam Bishop |
2008-04-11 | Stub out and start using a Decl::Destroy() method. | Sam Bishop |
2008-04-10 | Several improvements from Doug Gregor related to default | Chris Lattner |
2008-04-08 | Changed the Decl::Kind enum of the ObjCPropertyDecl class, so that it follows | Sam Bishop |
2008-04-08 | Add support for C++ default arguments, and rework Parse-Sema | Chris Lattner |
2008-04-06 | remove a use of getCanonicalType. | Chris Lattner |
2008-04-06 | This patch contains these changes: | Chris Lattner |
2008-04-04 | Rename ScopedDecl::getContext() -> getContextDecl(). Two motivations: | Steve Naroff |
2008-04-04 | Introduce ContextDecl, patch by Argiris Kirtzidis! | Chris Lattner |