Age | Commit message (Expand) | Author |
2009-04-26 | Implement function-try-blocks. However, there's a very subtle bug that I can'... | Sebastian Redl |
2009-04-25 | fix PR4049, a crash on invalid, by making sema install the right number of | Chris Lattner |
2009-04-25 | rename getNumParmVarDeclsFromType back to getNumParams(), | Chris Lattner |
2009-04-25 | add a new helper function to FunctionDecl instead of it being | Chris Lattner |
2009-04-21 | Explictly track tentative definitions within Sema, then hand those | Douglas Gregor |
2009-04-18 | Lazy deserialization of function bodies for PCH files. For the Carbon | Douglas Gregor |
2009-04-18 | FunctionDecl::getBody() is getting an ASTContext argument for use in | Douglas Gregor |
2009-04-14 | Add VarDecl::getStorageClassSpecifierString (StorageClass -> const char*). | Daniel Dunbar |
2009-03-31 | Implement -Wmissing-prototypes. Fixes PR3911. | Douglas Gregor |
2009-03-25 | Predicate to detect when a RecordDecl is really the injected-class-name | Douglas Gregor |
2009-03-20 | Fix <rdar://problem/6704086> by allowing the format string checking in Sema to | Ted Kremenek |
2009-03-13 | BlockDecl::Destroy now deallocates BlockDecl's array of ParmVarDecl*. | Ted Kremenek |
2009-03-13 | Fix <rdar://problem/6675489> BlockDecl should not use llvm::smallvector. | Steve Naroff |
2009-03-12 | API fix: All "bodies" for functions, Objective-C methods, blocks, are assumed to | Ted Kremenek |
2009-03-10 | Add type checking for tentative definitions at the end of the | Douglas Gregor |
2009-03-04 | Switch attributes to be allocated from the declcontext bump pointer just like | Chris Lattner |
2009-03-02 | Rework the way we find locally-scoped external declarations when we | Douglas Gregor |
2009-02-26 | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor |
2009-02-26 | Make the type associated with a ClassTemplateSpecializationDecl be a | Douglas Gregor |
2009-02-25 | C99 DR #316 implies that the function parameter types that are known | Douglas Gregor |
2009-02-24 | When we're declaring an object or function with linkage, teach name | Douglas Gregor |
2009-02-24 | Improve merging of function declarations. Specifically: | Douglas Gregor |
2009-02-22 | Contains the following (related to problems found while investigting <rdar://... | Steve Naroff |
2009-02-17 | Static variables and functions won't collide with standard library | Douglas Gregor |
2009-02-14 | Add hook to add attributes to function declarations that we know | Douglas Gregor |
2009-02-13 | Implicitly declare certain C library functions (malloc, strcpy, memmove, | Douglas Gregor |
2009-02-05 | Fix the symptom of the regression, by having the CXXConditionDeclExpr not des... | Sebastian Redl |
2009-02-04 | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor |
2009-02-03 | Semantic analysis, ASTs, and unqualified name lookup support for C++ | Douglas Gregor |
2009-02-02 | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor |
2009-01-27 | Finish making AST BumpPtrAllocation runtime configurable (based on -disable-f... | Steve Naroff |
2009-01-27 | Remove many references to ASTContext::getAllocator(), replacing them with cal... | Steve Naroff |
2009-01-20 | Remove the TopLevelDecls from TranslationUnit, since all of those decls are o... | Douglas Gregor |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2009-01-18 | fix deallocation of FunctionDecl::ParamInfo | Nuno Lopes |
2009-01-17 | Teach DeclContext how to find the primary declaration for any TagDecl | Douglas Gregor |
2009-01-14 | FunctionDecl::setParams() now uses the allocator associated with ASTContext t... | Ted Kremenek |
2009-01-09 | Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei... | Douglas Gregor |
2009-01-08 | Unify the code for defining tags in C and C++, so that we always | Douglas Gregor |
2009-01-07 | Finished semantic analysis of anonymous unions in C++. | Douglas Gregor |
2009-01-07 | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor |
2008-12-23 | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor |
2008-12-20 | Finish up saving original parameter type and | Fariborz Jahanian |
2008-12-20 | introducing ParmVarWithOriginalTypeDecl class to | Fariborz Jahanian |
2008-12-17 | fix leakage of var's initializers | Nuno Lopes |
2008-12-17 | Make sure that enumerators show up within the enumeration declaration. Fixes.... | Douglas Gregor |
2008-12-15 | Create new EnumDecl nodes for redeclarations of enums, linking them | Douglas Gregor |
2008-12-11 | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor |
2008-11-18 | Extend DeclarationName to support C++ overloaded operators, e.g., | Douglas Gregor |
2008-11-17 | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor |