[clang] Adds a pseudonym to clang"s windows mangler... (PR #97792)

Andrey Ali Khan Bolshakov via cfe-commits cfe-commits at lists.llvm.org
Tue Jul 9 14:15:24 PDT 2024


================
@@ -1938,12 +1946,23 @@ void MicrosoftCXXNameMangler::mangleTemplateArgValue(QualType T,
         mangleNumber(V.getLValueOffset().getQuantity());
       } else if (!V.hasLValuePath()) {
         // FIXME: This can only happen as an extension. Invent a mangling.
-        break;
+        DiagnosticsEngine &Diags = Context.getDiags();
+        unsigned DiagID =
+            Diags.getCustomDiagID(DiagnosticsEngine::Error,
+                                  "cannot mangle this template argument yet "
+                                  "(non-null base with null lvalue path)");
----------------
bolshakov-a wrote:

I think that "lvalue base" and "lvalue path" are clang internal terms. Not sure whether they are worth appearing in diagnostics.

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


More information about the cfe-commits mailing list