[clang] [Clang] Fix Itanium mangling crash for local lambda in ctor/dtor (PR #181068)

via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 3 05:19:41 PDT 2026


================
@@ -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);
----------------
eiytoq wrote:

I think that can be a separate NFC PR, since many places use a pointer.

https://github.com/llvm/llvm-project/pull/181068


More information about the cfe-commits mailing list