Sema: Allow null names to be passed in to isAcceptableTagRedeclaration
It's possible for TagRedeclarations to involve decls without a name, ie, anonymous enums. We hit some undefined behaviour if we bind these null names to the reference here. We never dereference the name, so it's harmless if it's null - make it a pointer to allow that. Fixes the Modules/submodules-merge-defs.cpp test under ubsan. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241963 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Sema/Sema.h 1 addition, 1 deletioninclude/clang/Sema/Sema.h
- lib/Sema/SemaDecl.cpp 5 additions, 5 deletionslib/Sema/SemaDecl.cpp
- lib/Sema/SemaTemplate.cpp 4 additions, 4 deletionslib/Sema/SemaTemplate.cpp
- lib/Sema/SemaTemplateInstantiate.cpp 1 addition, 1 deletionlib/Sema/SemaTemplateInstantiate.cpp
- lib/Sema/TreeTransform.h 1 addition, 1 deletionlib/Sema/TreeTransform.h
Loading
Please register or sign in to comment