[Modules] Implement ODR-like semantics for tag types in C/ObjC
Allow ODR for ObjC/C in the sense that we won't keep more that one definition around (merge them). However, ensure the decl pass the structural compatibility check in C11 6.2.7/1, for that, reuse the structural equivalence checks used by the ASTImporter. Few other considerations: - Create error diagnostics for tag types mismatches and thread them into the structural equivalence checks. - Note that by doing this we only support redefinition between types that are considered "compatible types" by C. This is mixed approach of the suggestions discussed in http://lists.llvm.org/pipermail/cfe-dev/2017-March/053257.html Differential Revision: https://reviews.llvm.org/D31778 rdar://problem/31909368 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@306918 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/ASTStructuralEquivalence.h 4 additions, 2 deletionsinclude/clang/AST/ASTStructuralEquivalence.h
- include/clang/Basic/DiagnosticASTKinds.td 8 additions, 3 deletionsinclude/clang/Basic/DiagnosticASTKinds.td
- include/clang/Sema/Sema.h 22 additions, 10 deletionsinclude/clang/Sema/Sema.h
- lib/AST/ASTStructuralEquivalence.cpp 48 additions, 10 deletionslib/AST/ASTStructuralEquivalence.cpp
- lib/Parse/ParseDecl.cpp 12 additions, 7 deletionslib/Parse/ParseDecl.cpp
- lib/Parse/ParseDeclCXX.cpp 12 additions, 2 deletionslib/Parse/ParseDeclCXX.cpp
- lib/Sema/SemaDecl.cpp 77 additions, 6 deletionslib/Sema/SemaDecl.cpp
- lib/Sema/SemaType.cpp 15 additions, 0 deletionslib/Sema/SemaType.cpp
- test/Modules/Inputs/F.framework/Headers/F.h 1 addition, 0 deletionstest/Modules/Inputs/F.framework/Headers/F.h
- test/Modules/Inputs/F.framework/Modules/module.modulemap 7 additions, 0 deletionstest/Modules/Inputs/F.framework/Modules/module.modulemap
- test/Modules/Inputs/F.framework/Modules/module.private.modulemap 7 additions, 0 deletions...dules/Inputs/F.framework/Modules/module.private.modulemap
- test/Modules/Inputs/F.framework/PrivateHeaders/NS.h 19 additions, 0 deletionstest/Modules/Inputs/F.framework/PrivateHeaders/NS.h
- test/Modules/elaborated-type-specifier-from-hidden-module.m 3 additions, 4 deletionstest/Modules/elaborated-type-specifier-from-hidden-module.m
- test/Modules/redefinition-c-tagtypes.m 48 additions, 0 deletionstest/Modules/redefinition-c-tagtypes.m
- test/Modules/redefinition-same-header.m 1 addition, 9 deletionstest/Modules/redefinition-same-header.m
Loading
Please register or sign in to comment