================
@@ -514,6 +514,10 @@ class CXXNameMangler {
void mangleUnscopedTemplateName(GlobalDecl GD, const DeclContext *DC,
const AbiTagList *AdditionalAbiTags);
void mangleSourceName(const IdentifierInfo *II);
+ void mangleConstructorName(const NamedDecl *ND,
+ const AbiTagList *AdditionalAbiTags);
+ void mangleDestructorName(const NamedDecl *ND,
+ const AbiTagList *AdditionalAbiTags);
----------------
erichkeane wrote:
Don't use a pointer to AbiTagList, it is just a vector-type, so we should be
doing a 'view' into it (aka, ArrayRef).
https://github.com/llvm/llvm-project/pull/181068
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits