| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add hook to add attributes to function declarations that we know | Douglas Gregor | 2009-02-14 | 1 | -9/+27 |
| * | Implicitly declare certain C library functions (malloc, strcpy, memmove, | Douglas Gregor | 2009-02-13 | 1 | -0/+22 |
| * | Fix the symptom of the regression, by having the CXXConditionDeclExpr not des... | Sebastian Redl | 2009-02-05 | 1 | -1/+3 |
| * | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor | 2009-02-04 | 1 | -0/+36 |
| * | Semantic analysis, ASTs, and unqualified name lookup support for C++ | Douglas Gregor | 2009-02-03 | 1 | -0/+8 |
| * | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor | 2009-02-02 | 1 | -4/+4 |
| * | Finish making AST BumpPtrAllocation runtime configurable (based on -disable-f... | Steve Naroff | 2009-01-27 | 1 | -3/+2 |
| * | Remove many references to ASTContext::getAllocator(), replacing them with cal... | Steve Naroff | 2009-01-27 | 1 | -29/+16 |
| * | Remove the TopLevelDecls from TranslationUnit, since all of those decls are o... | Douglas Gregor | 2009-01-20 | 1 | -1/+0 |
| * | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -54/+23 |
| * | fix deallocation of FunctionDecl::ParamInfo | Nuno Lopes | 2009-01-18 | 1 | -5/+3 |
| * | Teach DeclContext how to find the primary declaration for any TagDecl | Douglas Gregor | 2009-01-17 | 1 | -12/+16 |
| * | FunctionDecl::setParams() now uses the allocator associated with ASTContext t... | Ted Kremenek | 2009-01-14 | 1 | -2/+4 |
| * | Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei... | Douglas Gregor | 2009-01-09 | 1 | -0/+7 |
| * | Unify the code for defining tags in C and C++, so that we always | Douglas Gregor | 2009-01-08 | 1 | -2/+1 |
| * | Finished semantic analysis of anonymous unions in C++. | Douglas Gregor | 2009-01-07 | 1 | -0/+9 |
| * | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor | 2009-01-07 | 1 | -1/+2 |
| * | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor | 2008-12-23 | 1 | -0/+13 |
| * | Finish up saving original parameter type and | Fariborz Jahanian | 2008-12-20 | 1 | -1/+8 |
| * | introducing ParmVarWithOriginalTypeDecl class to | Fariborz Jahanian | 2008-12-20 | 1 | -0/+10 |
| * | fix leakage of var's initializers | Nuno Lopes | 2008-12-17 | 1 | -9/+23 |
| * | Make sure that enumerators show up within the enumeration declaration. Fixes.... | Douglas Gregor | 2008-12-17 | 1 | -1/+0 |
| * | Create new EnumDecl nodes for redeclarations of enums, linking them | Douglas Gregor | 2008-12-15 | 1 | -2/+4 |
| * | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -35/+24 |
| * | Extend DeclarationName to support C++ overloaded operators, e.g., | Douglas Gregor | 2008-11-18 | 1 | -2/+2 |
| * | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor | 2008-11-17 | 1 | -50/+2 |
| * | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -3/+41 |
| * | Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedD... | Argyrios Kyrtzidis | 2008-11-09 | 1 | -0/+23 |
| * | Parsing, ASTs, and semantic analysis for the declaration of overloaded | Douglas Gregor | 2008-11-06 | 1 | -0/+9 |
| * | LinkageSpecDecl is c++ specific, move it to DeclCXX | Chris Lattner | 2008-11-04 | 1 | -7/+0 |
| * | Fix crash reported in PR2923 where a function declared using typeof(another_f... | Ted Kremenek | 2008-10-29 | 1 | -3/+13 |
| * | Simplify handling of struct/union/class tags. | Argyrios Kyrtzidis | 2008-10-15 | 1 | -12/+3 |
| * | Final phase of converting BlockDecls over to DeclContext. This is unfortunate... | Steve Naroff | 2008-10-10 | 1 | -3/+2 |
| * | Instantiate the BlockDecl in ActOnBlockStart() so we can use it as a DeclCont... | Steve Naroff | 2008-10-08 | 1 | -3/+2 |
| * | - Add BlockDecl AST node. | Steve Naroff | 2008-10-08 | 1 | -0/+24 |
| * | Add getTypeSpecStartLoc() to VarDecls and FunctionDecls. | Steve Naroff | 2008-10-03 | 1 | -4/+7 |
| * | Change struct forward declarations and definitions to use unique RecordDecls,... | Ted Kremenek | 2008-09-05 | 1 | -3/+22 |
| * | Remove "NextDecl" from RecordDecl. This change touches many files that where... | Ted Kremenek | 2008-09-05 | 1 | -37/+6 |
| * | RecordDecl: | Ted Kremenek | 2008-09-02 | 1 | -60/+56 |
| * | RecordDecl: | Ted Kremenek | 2008-09-02 | 1 | -0/+12 |
| * | CXXRecordDecl and RecordDecl: | Ted Kremenek | 2008-09-02 | 1 | -6/+37 |
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -0/+2 |
| * | Destroy and delete the FieldDecl members of a RecordDecl. | Argyrios Kyrtzidis | 2008-08-08 | 1 | -0/+13 |
| * | Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. | Chris Lattner | 2008-06-17 | 1 | -0/+6 |
| * | Silence uninitialized value warning during Release build. | Ted Kremenek | 2008-06-16 | 1 | -4/+5 |
| * | -Add DeclChain member to DeclContext. | Argyrios Kyrtzidis | 2008-06-10 | 1 | -1/+1 |
| * | -Changes to TagDecl: | Argyrios Kyrtzidis | 2008-06-09 | 1 | -1/+8 |
| * | Added new C++ AST Decl subclasses. | Argyrios Kyrtzidis | 2008-06-09 | 1 | -1/+1 |
| * | Move Decl and DeclContext implementations into a new DeclBase.cpp file. | Argyrios Kyrtzidis | 2008-06-04 | 1 | -312/+1 |
| * | fix decl attributes cleaning | Nuno Lopes | 2008-06-01 | 1 | -8/+16 |