| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Convert DeclNodes to use TableGen. | Alexis Hunt | 2010-05-30 | 1 | -49/+61 |
* | Fixes for compilation with Microsoft Visual Studio 2010, from Steven Watanabe! | Douglas Gregor | 2010-05-11 | 1 | -2/+2 |
* | Recommit my change to how C++ does elaborated type lookups, now with | John McCall | 2010-04-23 | 1 | -8/+16 |
* | Revert "C++ doesn't really use "namespaces" for different kinds of names the ... | Daniel Dunbar | 2010-04-23 | 1 | -16/+8 |
* | C++ doesn't really use "namespaces" for different kinds of names the same | John McCall | 2010-04-23 | 1 | -8/+16 |
* | Make TemplateDecl and ObjCContainerDecl abstract | Douglas Gregor | 2010-04-22 | 1 | -2/+0 |
* | Kill off IDNS_ObjCImplementation and IDNS_ObjCCategoryName; they | Douglas Gregor | 2010-04-22 | 1 | -8/+4 |
* | Remove the AST statistics tracking I added yesterday; it didn't pan out. | Douglas Gregor | 2010-03-31 | 1 | -7/+0 |
* | Introduce new AST statistics that keep track of the number of isa (or | Douglas Gregor | 2010-03-30 | 1 | -0/+7 |
* | When copying a partial diagnostic into a DependentDiagnostic, allocate | Douglas Gregor | 2010-03-29 | 1 | -13/+6 |
* | Optimize PartialDiagnostic's memory-allocation behavior by placing a | Douglas Gregor | 2010-03-29 | 1 | -0/+2 |
* | Implement a framework for the delay of arbitrary diagnostics within | John McCall | 2010-03-24 | 1 | -19/+82 |
* | Split C++ friend declarations into their own header/implementation file. | John McCall | 2010-03-11 | 1 | -0/+1 |
* | Create a new InjectedClassNameType to represent bare-word references to the | John McCall | 2010-03-10 | 1 | -5/+16 |
* | When we invalidate a declaration, make it public, so that it doesn't | Douglas Gregor | 2010-03-05 | 1 | -0/+10 |
* | Don't assert that we have a valid access specifier on an invalid | Douglas Gregor | 2010-02-22 | 1 | -1/+2 |
* | Fix unused function warning to handle used attributes and redeclarations. Upd... | Tanya Lattner | 2010-02-17 | 1 | -0/+18 |
* | Have ~ASTContext() delete StoredDeclsMap (internal to DeclContext) by | Ted Kremenek | 2010-02-11 | 1 | -5/+30 |
* | Create function, block, and template parameters in the context of the | John McCall | 2010-01-22 | 1 | -2/+0 |
* | First pass at collecting access-specifier information along inheritance paths. | John McCall | 2010-01-20 | 1 | -2/+9 |
* | When we are instantiating a member function of a local class, be sure | Douglas Gregor | 2010-01-16 | 1 | -0/+11 |
* | Patch to fix a crash trying to access a category name in | Fariborz Jahanian | 2009-12-11 | 1 | -2/+2 |
* | Implement redeclaration checking and hiding semantics for using declarations.... | John McCall | 2009-12-10 | 1 | -0/+40 |
* | Fix for PR5710: make sure to put function template specializations into the | Eli Friedman | 2009-12-08 | 1 | -0/+3 |
* | r90313, in which OverloadedFunctionDecl is removed and never spoken of again. | John McCall | 2009-12-02 | 1 | -1/+0 |
* | Allocate MultipleDC objects using the allocator associated with | Ted Kremenek | 2009-12-01 | 1 | -5/+5 |
* | Streamline Stmt::CollectingStats() and Decl::CollectingStats(). No functional... | Kovarththanan Rajaratnam | 2009-11-29 | 1 | -2/+1 |
* | Add 1+2 consts. | Daniel Dunbar | 2009-11-21 | 1 | -1/+1 |
* | Incremental progress on using declarations. Split UnresolvedUsingDecl into | John McCall | 2009-11-18 | 1 | -2/+3 |
* | Add SourceLocations to ObjCClassDecl for the class identifiers referenced by ... | Ted Kremenek | 2009-11-18 | 1 | -1/+1 |
* | Do not register ObjCInterfaceDecls implicitly created by @class in the | Ted Kremenek | 2009-11-17 | 1 | -0/+7 |
* | Instead of hanging a using declaration's target decls directly off the using | John McCall | 2009-11-17 | 1 | -7/+17 |
* | Remove OriginalTypeParmDecl; the original type is the one specified | John McCall | 2009-10-23 | 1 | -1/+0 |
* | Anonymous namespaces, sema + codegen. A lot of semantics are still broken, | John McCall | 2009-10-01 | 1 | -0/+11 |
* | Improved representation and support for friend class templates. Angst about ... | John McCall | 2009-09-16 | 1 | -0/+1 |
* | When performing unqualified name lookup into a DeclContext, also look into | Douglas Gregor | 2009-09-10 | 1 | -0/+16 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -49/+49 |
* | Ensure that the tag decls of friend decls aren't added to the friending class's | John McCall | 2009-09-02 | 1 | -5/+0 |
* | Fix bug 4784 and allow friend declarations to properly extend | John McCall | 2009-08-31 | 1 | -4/+4 |
* | Add a workaround for decls that come from friend decls pointing to undeclared... | Anders Carlsson | 2009-08-29 | 1 | -2/+12 |
* | For consistency, just make friend declarations AS_public. | John McCall | 2009-08-29 | 1 | -10/+2 |
* | Don't assert that friend declarations must have access specifiers for now. | Anders Carlsson | 2009-08-29 | 1 | -2/+10 |
* | Omnibus friend decl refactoring. Instead of cloning AST classes for friend | John McCall | 2009-08-28 | 1 | -4/+1 |
* | Check in UnresolvedUsingDecl. | Anders Carlsson | 2009-08-28 | 1 | -0/+1 |
* | When checking whether one declaration context encloses another, make sure to ... | Douglas Gregor | 2009-08-27 | 1 | -0/+10 |
* | Add a FriendClassDecl type for holding declarations of friend types in | John McCall | 2009-08-11 | 1 | -0/+1 |
* | Argument-dependent lookup for friend declarations. Add a new decl type, | John McCall | 2009-08-11 | 1 | -3/+13 |
* | Change uses of: | Ted Kremenek | 2009-07-29 | 1 | -1/+1 |
* | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek | 2009-07-17 | 1 | -1/+1 |
* | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek | 2009-07-17 | 1 | -1/+1 |