Age | Commit message (Expand) | Author |
2009-01-29 | Move InitListChecker out of Sema.h | Douglas Gregor |
2009-01-29 | Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupD... | Steve Naroff |
2009-01-28 | Code generation support for C99 designated initializers. | Douglas Gregor |
2009-01-28 | Name change (isTypeName->getTypeName). | Steve Naroff |
2009-01-28 | Complete semantic checking for typedef redeclarations in C++. The | Douglas Gregor |
2009-01-28 | Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. | Steve Naroff |
2009-01-28 | Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. | Steve Naroff |
2009-01-27 | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner |
2009-01-24 | Fix for PR2100: merge types for variables. | Eli Friedman |
2009-01-24 | Ignore parens when determining if an expr is a string literal. Fixes PR3382. | Anders Carlsson |
2009-01-23 | Handle any undeclared parameters in a K&R-style function with a | Douglas Gregor |
2009-01-22 | EXTWARNify the warning about unnamed typedefs of enums | Douglas Gregor |
2009-01-22 | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor |
2009-01-21 | Don't look up decls with no name (such as parameters and unnamed tagged types), | Chris Lattner |
2009-01-20 | Optimize Declarator to avoid malloc/free traffic for the argument list of a | Chris Lattner |
2009-01-20 | Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and docum... | Douglas Gregor |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2009-01-19 | Centralize error reporting of improper uses of incomplete types in the | Douglas Gregor |
2009-01-18 | Support evaluation of vector constant expressions, and codegen of same. | Nate Begeman |
2009-01-17 | Warn about typedefs of enums without any declarator name. Fixes rdar://proble... | Douglas Gregor |
2009-01-17 | Teach DeclContext how to find the primary declaration for any TagDecl | Douglas Gregor |
2009-01-16 | Don't ICE on user redeclaration of objc's built-in types. | Fariborz Jahanian |
2009-01-16 | silence release-assert warning. | Chris Lattner |
2009-01-16 | Extract code dealing with typedef declarators into a separate function. | Zhongxing Xu |
2009-01-16 | Extract code dealing with variable declarator into a separate function. | Zhongxing Xu |
2009-01-16 | Extract code dealing with declarators of function type into a separate function | Zhongxing Xu |
2009-01-15 | PR3330: given an enum like this: | Chris Lattner |
2009-01-15 | add support for initializing static vars with a cast to union (gcc extension) | Nuno Lopes |
2009-01-15 | Initial implementation of member name lookup | Douglas Gregor |
2009-01-14 | Refactor name lookup. | Douglas Gregor |
2009-01-14 | Introduce support for C++0x explicit conversion operators (N2437) | Douglas Gregor |
2009-01-14 | FunctionDecl::setParams() now uses the allocator associated with ASTContext t... | Ted Kremenek |
2009-01-13 | Permitting typedefs without a name is a Microsoft/GNU extension | Douglas Gregor |
2009-01-12 | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor |
2009-01-12 | Implement support for anonymous structs and unions in C. Both C and | Douglas Gregor |
2009-01-12 | Properly set the scope of non-fields declared within a struct, union, | Douglas Gregor |
2009-01-11 | Fix operator precedence. | Sebastian Redl |
2009-01-09 | Don't bother setting NextDeclarator for EnumConstantDecls. It isn't used | Douglas Gregor |
2009-01-09 | When we see a reference to a struct, class, or union like "struct X" | Douglas Gregor |
2009-01-09 | Replace DeclContext's vector of ScopedDecl pointers with a linked list | Douglas Gregor |
2009-01-09 | Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei... | Douglas Gregor |
2009-01-08 | Remove double-insertion of EnumConstantDecls. Thanks to Zhongxing Xu for poin... | Douglas Gregor |
2009-01-08 | Unify the code for defining tags in C and C++, so that we always | Douglas Gregor |
2009-01-08 | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff |
2009-01-07 | Fix PR clang/3291 | Douglas Gregor |
2009-01-07 | Finished semantic analysis of anonymous unions in C++. | Douglas Gregor |
2009-01-07 | Use DeclContext::getLookupContext wherever necessary to ensure that we look t... | Douglas Gregor |
2009-01-07 | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor |
2009-01-06 | Allow Objective-C entities to be declared within a transparent context | Douglas Gregor |
2009-01-06 | simplify some code using 'continue' and the new 'isInIdentifierNamespace' pre... | Chris Lattner |