[PATCH] D145088: [RISCV] Add attribute(riscv_rvv_vector_bits(N)) based on AArch64 arm_sve_vector_bits.
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 16 05:22:26 PDT 2023
aaron.ballman added inline comments.
================
Comment at: clang/lib/AST/ItaniumMangle.cpp:3897-3899
+ } else if (T->getVectorKind() == VectorType::RVVFixedLengthDataVector) {
+ mangleRISCVFixedRVVVectorType(T);
+ return;
----------------
craig.topper wrote:
> aaron.ballman wrote:
> > Should there be corresponding changes to the Microsoft mangler as well?
> Good question. I don't see the equivalent SVE handling in the Microsoft mangler.
I'm fine if you want to address that issue in a follow-up.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145088/new/
https://reviews.llvm.org/D145088
More information about the cfe-commits
mailing list