| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | -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 |
| * | Sink the BuiltinInfo object from ASTContext into the | Chris Lattner | 2009-06-14 | 1 | -0/+1 |
| * | Make ParmVarDecl::getDefaultArg() more robust, it now asserts that the argume... | Anders Carlsson | 2009-06-06 | 1 | -1/+1 |
| * | Create a new PrintingPolicy class, which we pass down through the AST | Douglas Gregor | 2009-05-29 | 1 | -1/+5 |
| * | Introduced DeclContext::isDependentContext, which determines whether a | Douglas Gregor | 2009-05-28 | 1 | -13/+0 |
| * | When evaluating a VarDecl as a constant or determining whether it is | Douglas Gregor | 2009-05-26 | 1 | -1/+15 |
| * | When instantiating the definition of a member function of a class | Douglas Gregor | 2009-05-18 | 1 | -1/+9 |
| * | Improvements to the FunctionDecl getters/setters. | Anders Carlsson | 2009-05-14 | 1 | -2/+2 |
| * | Implement the notions of the "current instantiation" and "unknown | Douglas Gregor | 2009-05-11 | 1 | -3/+4 |
| * | Implement the semantics of the injected-class-name within a class | Douglas Gregor | 2009-05-10 | 1 | -0/+13 |
| * | Improve compatibility with GCC regarding inline semantics in GNU89 | Douglas Gregor | 2009-04-28 | 1 | -0/+24 |
| * | Implement function-try-blocks. However, there's a very subtle bug that I can'... | Sebastian Redl | 2009-04-26 | 1 | -5/+5 |
| * | fix PR4049, a crash on invalid, by making sema install the right number of | Chris Lattner | 2009-04-25 | 1 | -3/+2 |
| * | rename getNumParmVarDeclsFromType back to getNumParams(), | Chris Lattner | 2009-04-25 | 1 | -13/+5 |
| * | add a new helper function to FunctionDecl instead of it being | Chris Lattner | 2009-04-25 | 1 | -5/+8 |
| * | Explictly track tentative definitions within Sema, then hand those | Douglas Gregor | 2009-04-21 | 1 | -1/+2 |
| * | Lazy deserialization of function bodies for PCH files. For the Carbon | Douglas Gregor | 2009-04-18 | 1 | -5/+6 |
| * | FunctionDecl::getBody() is getting an ASTContext argument for use in | Douglas Gregor | 2009-04-18 | 1 | -1/+11 |
| * | Add VarDecl::getStorageClassSpecifierString (StorageClass -> const char*). | Daniel Dunbar | 2009-04-14 | 1 | -0/+14 |
| * | Implement -Wmissing-prototypes. Fixes PR3911. | Douglas Gregor | 2009-03-31 | 1 | -0/+20 |
| * | Predicate to detect when a RecordDecl is really the injected-class-name | Douglas Gregor | 2009-03-25 | 1 | -0/+5 |
| * | Fix <rdar://problem/6704086> by allowing the format string checking in Sema to | Ted Kremenek | 2009-03-20 | 1 | -1/+1 |
| * | BlockDecl::Destroy now deallocates BlockDecl's array of ParmVarDecl*. | Ted Kremenek | 2009-03-13 | 1 | -1/+2 |
| * | Fix <rdar://problem/6675489> BlockDecl should not use llvm::smallvector. | Steve Naroff | 2009-03-13 | 1 | -0/+17 |
| * | API fix: All "bodies" for functions, Objective-C methods, blocks, are assumed to | Ted Kremenek | 2009-03-12 | 1 | -2/+2 |
| * | Add type checking for tentative definitions at the end of the | Douglas Gregor | 2009-03-10 | 1 | -0/+16 |
| * | Switch attributes to be allocated from the declcontext bump pointer just like | Chris Lattner | 2009-03-04 | 1 | -0/+11 |
| * | Rework the way we find locally-scoped external declarations when we | Douglas Gregor | 2009-03-02 | 1 | -0/+41 |
| * | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor | 2009-02-26 | 1 | -2/+2 |
| * | Make the type associated with a ClassTemplateSpecializationDecl be a | Douglas Gregor | 2009-02-26 | 1 | -6/+8 |
| * | C99 DR #316 implies that the function parameter types that are known | Douglas Gregor | 2009-02-25 | 1 | -2/+6 |
| * | When we're declaring an object or function with linkage, teach name | Douglas Gregor | 2009-02-24 | 1 | -0/+9 |
| * | Improve merging of function declarations. Specifically: | Douglas Gregor | 2009-02-24 | 1 | -0/+5 |
| * | Contains the following (related to problems found while investigting <rdar://... | Steve Naroff | 2009-02-22 | 1 | -0/+5 |
| * | Static variables and functions won't collide with standard library | Douglas Gregor | 2009-02-17 | 1 | -0/+4 |
| * | Add hook to add attributes to function declarations that we know | Douglas Gregor | 2009-02-14 | 1 | -9/+27 |
| * | Implicitly declare certain C library functions (malloc, strcpy, memmove, | Douglas Gregor | 2009-02-13 | 1 | -0/+22 |
| * | Fix the symptom of the regression, by having the CXXConditionDeclExpr not des... | Sebastian Redl | 2009-02-05 | 1 | -1/+3 |
| * | Some name-lookup-related fixes, from Piotr Rak! | Douglas Gregor | 2009-02-04 | 1 | -0/+36 |
| * | Semantic analysis, ASTs, and unqualified name lookup support for C++ | Douglas Gregor | 2009-02-03 | 1 | -0/+8 |
| * | Add a macro-based enumeration of all of the Decl nodes (like we do | Douglas Gregor | 2009-02-02 | 1 | -4/+4 |