From: Georg-Johann Lay Date: Mon, 29 Jun 2026 11:49:23 +0000 (+0200) Subject: c++: Fix production comment for mangle_ctor_vtbl_for_type. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e7d997883b024c55d7c9844e5b643f65406a1ea;p=thirdparty%2Fgcc.git c++: Fix production comment for mangle_ctor_vtbl_for_type. mangle.cc::mangle_ctor_vtbl_for_type has write_string ("_Z"); write_string ("TC"); and hence the function comment should read We use the production ::= TC ... instead of the current ::= CT ... gcc/cp/ * mangle.cc (mangle_ctor_vtbl_for_type): Fix production in comment. --- diff --git a/gcc/cp/mangle.cc b/gcc/cp/mangle.cc index 8c67b67b197..d368359dccd 100644 --- a/gcc/cp/mangle.cc +++ b/gcc/cp/mangle.cc @@ -5131,7 +5131,7 @@ mangle_decomp (const tree decl, vec &decls) We use the production - ::= CT _ */ + ::= TC _ */ tree mangle_ctor_vtbl_for_type (const tree type, const tree binfo)