aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDecl.cpp
AgeCommit message (Expand)Author
2010-07-01Revert r107374, which broke bootstrap.Douglas Gregor
2010-07-01When building the type of a destructor, make sure to keep theDouglas Gregor
2010-06-25Add comment for my last patch.Fariborz Jahanian
2010-06-24Fixes a regression when redeclaration of a global satic Fariborz Jahanian
2010-06-22In C++, allow a declaration of an enum to follow a definition of thatDouglas Gregor
2010-06-21Fixes a corner case bug whereby declaring and defining an extern variable in a Fariborz Jahanian
2010-06-18Merge the "regparm" attribute from a previous declaration of aDouglas Gregor
2010-06-16Fix the recently-added warning about 'typename' and 'template'Douglas Gregor
2010-06-16Don't poke at an undefined class type of a field. Fixes PR7355.Douglas Gregor
2010-06-16Fix the build. Using declarations should not be considering when lookingJohn McCall
2010-06-16Fix a point of semantics with using declaration hiding: method templatesJohn McCall
2010-06-16Give Type::isIntegralType() an ASTContext parameter, so that itDouglas Gregor
2010-06-16Introduce Type::isIntegralOrEnumerationType(), to cover those placesDouglas Gregor
2010-06-15Patch adds support for copying of thoseFariborz Jahanian
2010-06-15Allocate template parameter lists for out-of-line definitions via theDouglas Gregor
2010-06-12Added template parameters info for out-of-line definitions of class template ...Abramo Bagnara
2010-06-11Split DependentNameType into two types. DependentNameType represents theJohn McCall
2010-06-09Fix two typos in comments.Sebastian Redl
2010-06-08When referring to a tag that was previously declared only as a friend, Douglas Gregor
2010-06-05Added AccessSpecDecl node.Abramo Bagnara
2010-06-04Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*.John McCall
2010-06-04Restructure how we interpret block-literal declarators. Correctly handleJohn McCall
2010-06-04Delay checking for mutable const fields until we're checking the field.John McCall
2010-05-27Sema: Replace getPragmaPackAlignment with AddAlignmentAttributesForRecord, whichDaniel Dunbar
2010-05-27AST: Rename PragmaPackAttr to MaxFieldAlignmentAttr, which is more accurate.Daniel Dunbar
2010-05-26Improve on flexible array diagnostics (PR7029).Fariborz Jahanian
2010-05-26Fixes misc. flexible array bugs in c++ (PR7029).Fariborz Jahanian
2010-05-21Improve parser recovery when we encounter a dependent template nameDouglas Gregor
2010-05-21Propagate access specifiers to anonymous union members nested within classes.John McCall
2010-05-20Whoops.John McCall
2010-05-20Don't try to check jump scopes in invalid functions. FixesJohn McCall
2010-05-19Added basic source locations to Elaborated and DependentName types.Abramo Bagnara
2010-05-19Adds support for ObjC++'s GC attribute on declaration ofFariborz Jahanian
2010-05-15Substantially alter the design of the Objective C type AST by introducingJohn McCall
2010-05-15Implement semantic analysis and an AST representation for the namedDouglas Gregor
2010-05-14Patch to fix a crash on incomplete class declaration.Fariborz Jahanian
2010-05-13Rework when and how vtables are emitted, by tracking where vtables areDouglas Gregor
2010-05-11Merged Elaborated and QualifiedName types.Abramo Bagnara
2010-05-08Improve our handling of the -Wunused-variable warning in templates. InDouglas Gregor
2010-05-06Remember the number of positive and negative bits used by the enumerators ofJohn McCall
2010-05-04When instantiating a function that was declared via a typedef, e.g.,Douglas Gregor
2010-05-03Diagnose unused exception parameters under a different warning groupDouglas Gregor
2010-05-03When a class contains a non-empty anonymous union or struct, mark isDouglas Gregor
2010-05-01It turns out that basically every caller to RequireCompleteDeclContextJohn McCall
2010-04-29Rebuild the nested name specifiers in member-pointer declarator chunks whenJohn McCall
2010-04-28Written storage class for declarations inside linkage specifications without ...Abramo Bagnara
2010-04-27When checking the redeclaration context of a typedef that refers to aDouglas Gregor
2010-04-27Don't look into incomplete types when trying to warn about unusedDouglas Gregor
2010-04-26Diagnose declaration of reference typed ivars.Fariborz Jahanian
2010-04-24CastExpr should not hold a pointer to the base path. More cleanup.Anders Carlsson