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