| Commit message (Expand) | Author | Age | Files | Lines | 
| ... |  | 
| *  | WIP implementation of explicit function template specialization. This | Douglas Gregor | 2009-09-24 | 1 | -4/+18 | 
| *  | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -1/+1 | 
| *  | Rework the way we determine whether an externally visible symbol is | Douglas Gregor | 2009-09-13 | 1 | -18/+57 | 
| *  | Remove unnecessary ASTContext parameter from FunctionDecl::isBuiltinID | Douglas Gregor | 2009-09-12 | 1 | -1/+2 | 
| *  | Remove unnecessary ASTContext parameters from isMain and isExternC | Douglas Gregor | 2009-09-12 | 1 | -3/+6 | 
| *  | Eliminate FunctionDecl::getBodyIfAvailable | Douglas Gregor | 2009-09-12 | 1 | -10/+0 | 
| *  | Tweak the semantics of FunctionDecl::isOutOfLine to consider an | Douglas Gregor | 2009-09-11 | 1 | -0/+24 | 
| *  | Cleanup and test C++ default arguments. Improvements include: | Douglas Gregor | 2009-09-11 | 1 | -6/+16 | 
| *  | When stringizing a NamedDecl for a diagnostic, treat the template | John McCall | 2009-09-11 | 1 | -0/+12 | 
| *  | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -46/+46 | 
| *  | Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam ... | Anders Carlsson | 2009-09-08 | 1 | -3/+5 | 
| *  | Improve the AST representation and semantic analysis for extern | Douglas Gregor | 2009-09-04 | 1 | -12/+23 | 
| *  | Correctly handle elaborated template ids.  Still not handled properly for fri... | John McCall | 2009-09-04 | 1 | -0/+12 | 
| *  | Remove TypeSpecStartLocation from VarDecl/FunctionDecl/FieldDecl, and use Dec... | Argyrios Kyrtzidis | 2009-08-21 | 1 | -9/+16 | 
| *  | Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interf... | Argyrios Kyrtzidis | 2009-08-19 | 1 | -13/+15 | 
| *  | Introduce DeclaratorInfo and TypeLoc, intended to be used for storing and rea... | Argyrios Kyrtzidis | 2009-08-19 | 1 | -0/+5 | 
| *  | Disable all recognition of main() in -ffreestanding.  Addresses bug #4720. | John McCall | 2009-08-15 | 1 | -2/+3 | 
| *  | There's no point in going through the getAs<TagType> stuff to find the defini... | Douglas Gregor | 2009-07-29 | 1 | -3/+0 | 
| *  | Make tag declarations redeclarable. This change has three purposes: | Douglas Gregor | 2009-07-29 | 1 | -21/+27 | 
| *  | Change uses of: | Ted Kremenek | 2009-07-29 | 1 | -6/+6 | 
| *  | Template instantiation for static data members that are defined out-of-line. | Douglas Gregor | 2009-07-24 | 1 | -0/+4 | 
| *  | Add the location of the tag keyword into TagDecl. From Enea | Douglas Gregor | 2009-07-21 | 1 | -7/+7 | 
| *  | Introduce a redecl_iterator in Decl class, so that we can do a "iterate over ... | Argyrios Kyrtzidis | 2009-07-18 | 1 | -1/+1 | 
| *  | Introduce the Redeclarable template class, which serves as a base type defini... | Argyrios Kyrtzidis | 2009-07-18 | 1 | -42/+4 | 
| *  | Remove getFirstDeclaration/getLatestDeclaration from FunctionDecl and VarDecl. | Argyrios Kyrtzidis | 2009-07-18 | 1 | -18/+4 | 
| *  | Move the functionality of ASTContext::getCanonicalDecl(), into a virtual meth... | Argyrios Kyrtzidis | 2009-07-18 | 1 | -4/+18 | 
| *  | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek | 2009-07-17 | 1 | -6/+6 | 
| *  | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek | 2009-07-17 | 1 | -6/+6 | 
| *  | Add a "TypeSpecStartLoc" to FieldDecl. Patch contributed by Enea Zaffanella. | Steve Naroff | 2009-07-14 | 1 | -2/+2 | 
| *  | Introduce redecl_iterator, used for iterating over the redeclarations of a Fu... | Argyrios Kyrtzidis | 2009-07-14 | 1 | -19/+19 | 
| *  | Introduce FunctionDecl::getLatestDeclaration() and VarDecl::getLatestDeclarat... | Argyrios Kyrtzidis | 2009-07-14 | 1 | -7/+39 | 
| *  | Introduce FunctionDecl::getFirstDeclaration() and VarDecl::getFirstDeclaratio... | Argyrios Kyrtzidis | 2009-07-14 | 1 | -10/+18 | 
| *  | Add the SourceLocation for the right brace in TagDecl. | Argyrios Kyrtzidis | 2009-07-14 | 1 | -0/+5 | 
| *  | Implemented memmove_collectable API for Next runtime | Fariborz Jahanian | 2009-07-08 | 1 | -0/+1 | 
| *  | Introduce the virtual method Decl::getPrimaryDecl(). | Argyrios Kyrtzidis | 2009-07-05 | 1 | -0/+16 | 
| *  | Remove the ASTContext parameter from the getBody() methods of Decl and subcla... | Argyrios Kyrtzidis | 2009-06-30 | 1 | -3/+2 | 
| *  | Remove the ASTContext parameter from the attribute-related methods of Decl. | Argyrios Kyrtzidis | 2009-06-30 | 1 | -6/+6 | 
| *  | Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. | Chris Lattner | 2009-06-30 | 1 | -2/+1 | 
| *  | Improve code generation for function template specializations: | Douglas Gregor | 2009-06-29 | 1 | -2/+23 | 
| *  | Keep track of function template specializations, to eliminate | Douglas Gregor | 2009-06-29 | 1 | -6/+19 | 
| *  | -Keep a reference to the ASTContext inside the TranslationUnitDecl. | Argyrios Kyrtzidis | 2009-06-29 | 1 | -1/+1 | 
| *  | Move FunctionDecl::TemplateSpecializationInfo out into its own class, | Douglas Gregor | 2009-06-29 | 1 | -5/+25 | 
| *  | Add NamedDecl::getUnderlyingDecl that can see through UsingDecl and ObjCCompa... | Anders Carlsson | 2009-06-26 | 1 | -0/+13 | 
| *  | Implicit instantiation for function template specializations. | Douglas Gregor | 2009-06-26 | 1 | -0/+18 | 
| *  | Improved semantic analysis and AST respresentation for function | Douglas Gregor | 2009-06-25 | 1 | -0/+8 | 
| *  | Don't use operator overload '<' for SourceLocation, it has not semantic meaning. | Argyrios Kyrtzidis | 2009-06-23 | 1 | -1/+1 | 
| *  | Add a comment. | Argyrios Kyrtzidis | 2009-06-23 | 1 | -1/+2 | 
| *  | Addressing Doug's suggestions: | Argyrios Kyrtzidis | 2009-06-22 | 1 | -1/+1 | 
| *  | Introduce Decl::getSourceRange() which, like Stmt::getSourceRange(), represen... | Argyrios Kyrtzidis | 2009-06-20 | 1 | -0/+16 | 
| *  | Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. | Douglas Gregor | 2009-06-18 | 1 | -9/+10 |