[llvm-branch-commits] [clang] release/20.x: [Clang][MicrosoftMangle] Implement mangling for ConstantMatrixType (#134930) (PR #138017)

Tom Stellard via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat May 10 11:08:54 PDT 2025


================
@@ -3552,7 +3552,22 @@ void MicrosoftCXXNameMangler::mangleType(const DependentSizedExtVectorType *T,
 
 void MicrosoftCXXNameMangler::mangleType(const ConstantMatrixType *T,
                                          Qualifiers quals, SourceRange Range) {
-  Error(Range.getBegin(), "matrix type") << Range;
+  QualType EltTy = T->getElementType();
+  const BuiltinType *ET = EltTy->getAs<BuiltinType>();
----------------
tstellar wrote:

I've added this commit to the PR now.

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


More information about the llvm-branch-commits mailing list