Age | Commit message (Expand) | Author |
2009-06-30 | De-ASTContext-ify DeclContext. | Argyrios Kyrtzidis |
2009-06-30 | Remove the ASTContext parameter from the getBody() methods of Decl and subcla... | Argyrios Kyrtzidis |
2009-06-30 | Remove the ASTContext parameter from the attribute-related methods of Decl. | Argyrios Kyrtzidis |
2009-06-27 | Renamed MarcDestructorReferenced -> MarkDestructorReferenced | Fariborz Jahanian |
2009-06-26 | Patch to mark destructors when they are used. | Fariborz Jahanian |
2009-06-25 | Improved semantic analysis and AST respresentation for function | Douglas Gregor |
2009-06-25 | Set the end range location of a FunctionDecl to the right paren. | Argyrios Kyrtzidis |
2009-06-24 | Make sure that the template parameter lists get from the parser down to ActOn... | Douglas Gregor |
2009-06-24 | Support for [class.local]p4. | Anders Carlsson |
2009-06-24 | When declaring a function template, create a FunctionTemplateDecl node | Douglas Gregor |
2009-06-23 | Start propagating template parameter lists to the right places to | Douglas Gregor |
2009-06-23 | Eliminate DeclPtrTy() arguments to ActOnDeclarator that are just a very, very... | Douglas Gregor |
2009-06-22 | Remove ImplicitMustBeDefined, use universal 'Used' flag | Fariborz Jahanian |
2009-06-20 | Parsing and AST support for using declarations, from John Thompson! | Douglas Gregor |
2009-06-19 | Keep track of when declarations are "used" according to C and | Douglas Gregor |
2009-06-19 | Patch for implementation of C++'s object model. This is | Fariborz Jahanian |
2009-06-18 | Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. | Douglas Gregor |
2009-06-17 | Diagnose class members that shadow a template parameter. Fixes | Douglas Gregor |
2009-06-17 | Fix some erroneous comments due to trigger-happy copy&paste. | Argyrios Kyrtzidis |
2009-06-17 | Factor out some common code into Sema::EnterDeclaratorContext/ExitDeclaratorC... | Argyrios Kyrtzidis |
2009-06-17 | Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine. | Argyrios Kyrtzidis |
2009-06-17 | Support dependent extended vector types and template instantiation | Douglas Gregor |
2009-06-14 | move GetBuiltinType from Builtin::Context to ASTContext. | Chris Lattner |
2009-06-10 | PR4350: Make sure we don't create invalid printf attributes. This isn't | Eli Friedman |
2009-06-05 | Use of DeclContext for objc's ivars. No functionality | Fariborz Jahanian |
2009-06-05 | Address review comments for #pragma weak. | Eli Friedman |
2009-06-05 | Start of a Sema implementation for #pragma weak. This isn't really the | Eli Friedman |
2009-06-04 | Fix up this compatibility hack to be more compatible with gcc. | Eli Friedman |
2009-06-01 | PR4287: allow a variadic prototype to make a subsequent K&R style | Eli Friedman |
2009-05-31 | Disallow exception specs on typedefs. | Sebastian Redl |
2009-05-30 | AddInitializerToDecl needs to take a full expression. | Anders Carlsson |
2009-05-30 | Remove VarDecl from CheckInitializerTypes now that CXXConstructExpr doesn't n... | Anders Carlsson |
2009-05-30 | Add a member lookup criteria constructor for searching for overridden virtual... | Anders Carlsson |
2009-05-30 | Refactor and clean up the AST printer, so that it uses a DeclVisitor, | Douglas Gregor |
2009-05-29 | Reject incomplete types in exception specs. | Sebastian Redl |
2009-05-29 | Now that we have declared/defined tag types within DeclGroups, | Douglas Gregor |
2009-05-29 | If a declarator group declares a type, make sure to add that declaration | Eli Friedman |
2009-05-28 | When we parse a tag specifier, keep track of whether that tag | Douglas Gregor |
2009-05-27 | Reintroduce the home for exception specs, and make Sema fill it. However, kee... | Sebastian Redl |
2009-05-27 | Add some more tests for instantiation of declaration references. Also, | Douglas Gregor |
2009-05-27 | Create CXXConstructExprs when constructing via copy initialization. | Anders Carlsson |
2009-05-26 | When evaluating a VarDecl as a constant or determining whether it is | Douglas Gregor |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-18 | Simplify struct/class tag mismatch warning, per Sebastian's suggestion | Douglas Gregor |
2009-05-16 | Add OldMD to the list of methods NewMD overrides | Anders Carlsson |
2009-05-16 | Fix another case where the extern-ness of extern "C" wasn't being captured. | Anders Carlsson |
2009-05-16 | Avoid calling mergeTypes in C++. I think these are the correct C++ | Eli Friedman |
2009-05-16 | PR2044: reject declarations of functions returning variably modified | Eli Friedman |
2009-05-16 | Implement a FIXME, we now pass in the locations of the braces for enums. | Mike Stump |
2009-05-15 | Call ActOnStartOfFunctionDecl/ActOnFinishFunctionBody when | Douglas Gregor |