[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
Fri May 9 13:30: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:
Is there a backport request for this?
https://github.com/llvm/llvm-project/pull/138017
More information about the llvm-branch-commits
mailing list