summaryrefslogtreecommitdiffstats
path: root/clang/test/ASTMerge/Inputs/enum1.c
Commit message (Collapse)AuthorAgeFilesLines
* Cope with anonymous tags defined within declarators by structurallyDouglas Gregor2010-02-151-0/+8
| | | | | | | | | | | | | | | | | | | | comparing their types under the assumption that they are equivalent, rather than importing the types and then checking for compatibility. A few minor tweaks here: - Teach structural matching to handle compatibility between function types with prototypes and those without prototypes. - Teach structural matching that an incomplete record decl is the same as any other record decl with the same name. - Keep track of pairs of declarations that we have already checked (but failed to find as structurally matching), so we don't emit diagnostics repeatedly. - When importing a typedef of an anonymous tag, be sure to link the imported tag type to its typedef. With these changes, we survive a repeated import of <stdlib.h> and <stdio.h>. Alas, the ASTNodeImporter is getting a little grotty. llvm-svn: 96298
* Implement AST importing and merging for enumeration types andDouglas Gregor2010-02-121-0/+34
enumerators, along with ImplicitCastExprs to make it work. llvm-svn: 96024
OpenPOWER on IntegriCloud