| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix C++ PCH issue. | Argyrios Kyrtzidis | 2010-09-09 | 1 | -8/+4 |
* | Fix C++ PCH issues. | Argyrios Kyrtzidis | 2010-09-08 | 1 | -28/+9 |
* | Fix the source-range information for an EnumConstantDecl; previously, | Douglas Gregor | 2010-09-01 | 1 | -0/+7 |
* | Rename DeclContext::getLookupContext to getRedeclContext and change its seman... | Sebastian Redl | 2010-08-31 | 1 | -3/+3 |
* | De-memberify the VarDecl and FunctionDecl StorageClass enums. | John McCall | 2010-08-26 | 1 | -27/+27 |
* | A member function never has "C" linkage. Fixes <rdar://problem/8318976>. | Douglas Gregor | 2010-08-17 | 1 | -0/+3 |
* | Properly give unique-external linkage to members of member templates | John McCall | 2010-08-13 | 1 | -15/+51 |
* | Added locations and type source info for DeclarationName. | Abramo Bagnara | 2010-08-11 | 1 | -4/+3 |
* | Remove mutable data on TagType and InjectedClassNameType, by instead walking ... | Sebastian Redl | 2010-08-02 | 1 | -19/+2 |
* | Remove destructors from declaration nodes | Douglas Gregor | 2010-07-25 | 1 | -14/+0 |
* | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -85/+0 |
* | Hide FunctionTemplateDecl's specializations folding set as implementation det... | Argyrios Kyrtzidis | 2010-07-20 | 1 | -6/+7 |
* | Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of... | Argyrios Kyrtzidis | 2010-07-07 | 1 | -8/+19 |
* | Improve the accuracy of getSourceRange() for DeclaratorDecl and | Douglas Gregor | 2010-07-06 | 1 | -5/+24 |
* | Read/write some source location for PCH. | Argyrios Kyrtzidis | 2010-07-05 | 1 | -3/+6 |
* | Add some side-effect free Create methods for TypeDecl subclasses and use them... | Argyrios Kyrtzidis | 2010-07-02 | 1 | -0/+9 |
* | Modify ClassTemplateSpecializationDecl and ClassTemplatePartialSpecialization... | Argyrios Kyrtzidis | 2010-06-23 | 1 | -1/+1 |
* | Make it easier to read/write the template part of FunctionDecl. | Argyrios Kyrtzidis | 2010-06-22 | 1 | -0/+38 |
* | Fixes a corner case bug whereby declaring and defining an extern variable in a | Fariborz Jahanian | 2010-06-21 | 1 | -1/+9 |
* | Allocate template parameter lists for out-of-line definitions via the | Douglas Gregor | 2010-06-15 | 1 | -3/+10 |
* | Fix: | Chris Lattner | 2010-06-14 | 1 | -1/+1 |
* | Added template parameters info for out-of-line definitions of class template ... | Abramo Bagnara | 2010-06-12 | 1 | -0/+23 |
* | Copy source information for the inner type of an elaborated type; fixes some | John McCall | 2010-05-28 | 1 | -9/+2 |
* | Roll back r104941. | John McCall | 2010-05-28 | 1 | -1/+0 |
* | Add a new attribute on records, __attribute__((adl_invisible)), and define | John McCall | 2010-05-28 | 1 | -0/+1 |
* | Introduce a method to get from an anonymous struct or union record declaration | John McCall | 2010-05-21 | 1 | -0/+11 |
* | Added TemplateArgumentListInfo to FunctionTemplateSpecializationInfo. | Abramo Bagnara | 2010-05-20 | 1 | -1/+13 |
* | Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRan... | Abramo Bagnara | 2010-05-20 | 1 | -1/+1 |
* | Cache the linkage of a type within its canonical type, eliminating | Douglas Gregor | 2010-05-19 | 1 | -0/+6 |
* | Determine when the instantiation of a friend function defined inside a | Douglas Gregor | 2010-05-17 | 1 | -3/+2 |
* | Merged Elaborated and QualifiedName types. | Abramo Bagnara | 2010-05-11 | 1 | -11/+1 |
* | Push TypeSourceInfo::getTypeLoc() into a header file so that it's | John McCall | 2010-05-06 | 1 | -5/+0 |
* | Remember the number of positive and negative bits used by the enumerators of | John McCall | 2010-05-06 | 1 | -1/+5 |
* | Mark a variable as used in the absence of asserts to silence a GCC warning. | Chandler Carruth | 2010-05-06 | 1 | -0/+1 |
* | When we start the definition of a class template, set the | Douglas Gregor | 2010-04-30 | 1 | -0/+9 |
* | Add FunctionDecl::isVariadic() to match BlockDecl::isVariadic() and ObjCMetho... | Ted Kremenek | 2010-04-29 | 1 | -0/+6 |
* | Reduce string trashing in getQualifiedNameAsString. | Benjamin Kramer | 2010-04-28 | 1 | -48/+38 |
* | Make TemplateDecl and ObjCContainerDecl abstract | Douglas Gregor | 2010-04-22 | 1 | -1/+0 |
* | Specify linkage for Objective-C declarations. | Ted Kremenek | 2010-04-20 | 1 | -0/+23 |
* | Keep track of the actual storage specifier written on a variable or | Douglas Gregor | 2010-04-19 | 1 | -8/+10 |
* | Add printName to DeclarationName which prints the human-readable name on a | Benjamin Kramer | 2010-04-17 | 1 | -6/+0 |
* | Add raw_ostream operators to NamedDecl for convenience. Switch over all users... | Benjamin Kramer | 2010-04-17 | 1 | -0/+6 |
* | Fix an embarrasing memory error. I was apparently very tired when I wrote this | John McCall | 2010-04-13 | 1 | -1/+1 |
* | Implement dependent friend function template specializations. | John McCall | 2010-04-08 | 1 | -0/+34 |
* | Implement the protected access restriction ([class.protected]), which requires | John McCall | 2010-04-06 | 1 | -0/+18 |
* | Properly account for redeclarations when explicitly instantiating class templ... | John McCall | 2010-03-26 | 1 | -4/+2 |
* | Implement -Wshadow. Based on a patch by Mike M.! | John McCall | 2010-03-16 | 1 | -1/+4 |
* | Remember declaration scope qualifiers in the AST. Imposes no memory overhead | John McCall | 2010-03-15 | 1 | -6/+69 |
* | Make Decl::isOutOfLine() virtual, and use that to determine when definitions | Chandler Carruth | 2010-02-21 | 1 | -4/+4 |
* | Remove use of 'std::string' from Attr objects, using instead a byte | Ted Kremenek | 2010-02-11 | 1 | -9/+0 |